Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ If not, it can be installed with the following commands:
```sh
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source ~/.cargo/env
# Restart your terminal (or run `source ~/.cargo/env` again) so the `cargo` command is available.
```

With Rust installed, install the dependencies for your operating system:
Expand Down
9 changes: 9 additions & 0 deletions docs/running-an-arc-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,15 @@ The `result` field represents the next block height, in hexadecimal
It should increase over time.
If it remains `0x0`, check the logs of the consensus layer for errors.

For real-time logs, run these commands in separate terminals:

```sh
# Consensus layer logs (most useful for sync issues)
sudo journalctl -u arc-consensus -f

# Execution layer logs
sudo journalctl -u arc-execution -f

> Notice that this command queries the execution layer's HTTP server offering
> a local JSON-RPC API.
> If the address and port of the HTTP endpoint are configured differently than
Expand Down