Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(website): fix port number on node-runner-manual.mdx and run-a-taiko-node.mdx #14306

Merged
merged 4 commits into from
Jul 28, 2023
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ docker compose -f ./docker-compose.l3.yml --env-file .env.l3 up -d

### Verify node is running

A node dashboard will be running on `localhost` on the `GRAFANA_PORT` you set in your `.env` or `.env.l3` file. For a Grimsvotn L2 node that would default to: [http://localhost:3000/d/L2ExecutionEngine/l2-execution-engine-overview](http://localhost:3000/d/L2ExecutionEngine/l2-execution-engine-overview).
A node dashboard will be running on `localhost` on the `GRAFANA_PORT` you set in your `.env` or `.env.l3` file. For a Grimsvotn L2 node that would default to: [http://localhost:3001/d/L2ExecutionEngine/l2-execution-engine-overview](http://localhost:3001/d/L2ExecutionEngine/l2-execution-engine-overview).

You can verify that your node is syncing by checking the **chain head** on the dashboard and seeing that it is increasing. Once the chain head matches what's on the block explorer, you are fully synced.

Expand Down
4 changes: 2 additions & 2 deletions packages/website/pages/docs/manuals/node-runner-manual.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ docker compose -f ./docker-compose.l3.yml --env-file .env.l3 down -v
**Grimsvotn L2:**

```sh
open http://localhost:3000/d/L2ExecutionEngine/l2-execution-engine-overview
open http://localhost:3001/d/L2ExecutionEngine/l2-execution-engine-overview
```

**Eldfell L3:**

```sh
open http://localhost:3001/d/L2ExecutionEngine/l2-execution-engine-overview
open http://localhost:3002/d/L2ExecutionEngine/l2-execution-engine-overview
```

## View all logs
Expand Down