Skip to content

Commit

Permalink
Add node status check step
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Besancon committed Jan 5, 2024
1 parent 3554a4a commit f0d52f2
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions docs/node/initial.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -239,3 +239,48 @@ node_get_staking_addresses
```

Now you can leave the node running, and it will start producing blocks just after Genesis!

## Step 4: Checking your node's status

### Check your routability status

You can use a service such as https://portchecker.co to check that the ports 31244 and 31245 are both opened for your public IP address.

Additionally, in your massa-client, you can check that the `get_status` command shows your routable IP.

```shell
get_status
```

### Check your node staking address

You can check that the staking address you obtain with the following command in massa-client:

```shell
node_get_staking_addresses
```

is present in the initial staker lists, available in `massa/massa-node/base_config/initial_rolls.json`.

### Make sure you are connected to peers

In order for your node to be running properly, you have to make sure you are connected to other peers on the network.

The `get_status`command will show you which node you are connected too:
```shell
get_status
```














0 comments on commit f0d52f2

Please sign in to comment.