> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fortytwo.network/llms.txt
> Use this file to discover all available pages before exploring further.

# Relay Node Support

<Badge color="gray">P2P</Badge>
<Badge color="gray">Fortytwo P2P Relay</Badge>
<Badge color="green">Report Issues</Badge>
<Badge color="blue">Find Logs</Badge>
<Badge color="blue">Export Logs</Badge>
<Badge color="blue">Default Installation Location</Badge>

<Card title="Global support page" href="/docs/support" icon="heart" horizontal>
  Navigate to the main support page.
</Card>

## Reporting Your Issues

If you encounter any issues or have questions about Relay nodes:

* Join our [<Icon icon="discord" /> Discord community <Icon icon="arrow-up-right" />](https://discord.com/invite/fortytwo). Relay Noderunners have access to the `#relay-support` channel.
  * The Relay Noderunner role is required to access the `#relay-support` channel and is assigned to you automatically if you specify your Discord username in your [Relay Application Form <Icon icon="arrow-up-right" />](https://tally.so/r/9qN9Ap).
  * If your role was not automatically assigned, contact our Community team on Discord.
* Use the `#tech-questions` channel to join the discussion on general issue-related topics.

## Finding Log Files

To view logs as files, they have to be exported out of Docker.

The following should be executed from the node repository folder, where your `.env` and `docker-compose.yml` are located.

### View Logs

```bash theme={null}
docker compose logs -f -t --tail 100
```

Prints the last 100 lines of logs for all services, then continues streaming new ones.<br />
Change `--tail` option to another value if required.

### Export Logs

Logs can be exported to any directory, yet if you don't define a custom path, the log file gets generated in the **default location**.

<Note>
  **The path where your node is installed might differ from the default path if you altered it at the node installation step as defined on the '[Quick Start](/docs/relay-quick-start)' page.**
</Note>

<Tabs>
  <Tab title="macOS" icon="apple">
    ```bash Zsh theme={null}
    docker compose logs -t > "ft_relay_node_logs_$(date +'%Y%m%d_%H%M%S').txt"
    ```
  </Tab>

  <Tab title="Windows" icon="windows">
    ```bash PowerShell theme={null}
    docker compose logs -t > "ft_relay_node_logs_$(Get-Date -Format 'yyyyMMdd_HHmmss').txt"
    ```
  </Tab>

  <Tab title="Linux (Ubuntu/Debian)" icon="linux">
    ```bash Bash theme={null}
    docker compose logs -t > "ft_relay_node_logs_$(date +'%Y%m%d_%H%M%S').txt"
    ```
  </Tab>
</Tabs>

## Default Installation Location

Default installation paths are relative to your home directory.

<Note>
  **The path where your node is installed might differ from the default path if you altered it at the node installation step as defined on the '[Quick Start](/docs/relay-quick-start)' page.**
</Note>

<Tabs>
  <Tab title="macOS" icon="apple">
    Short path:

    ```bash Zsh theme={null}
    ~/FortytwoRelay
    ```

    Full path:

    ```bash Zsh theme={null}
    /Users/{username}/FortytwoRelay
    ```
  </Tab>

  <Tab title="Windows" icon="windows">
    Paste into the address bar:

    ```bash theme={null}
    %USERPROFILE%\FortytwoRelay
    ```

    Full path example:

    ```bash theme={null}
    C:\Users\{username}\FortytwoRelay
    ```

    Path for PowerShell:

    ```bash theme={null}
    cd "$HOME\FortytwoRelay"
    ```
  </Tab>

  <Tab title="Linux (Ubuntu/Debian)" icon="linux">
    Short path:

    ```bash Bash theme={null}
    ~/FortytwoRelay
    ```

    Full path:

    ```bash Bash theme={null}
    /home/{username}/FortytwoRelay
    ```
  </Tab>
</Tabs>

# FAQ

See the '[P2P Relay Nodes section in FAQ](/docs/faq#p2p-relay-nodes)'.
