At this point, you should have the complete Rocket Pool infrastructure running, including the Smartnode stack, an Execution and a Consensus client. You should also have hardened your operating system from outside attackers. If you've completed both of these steps, you're ready to create a Rocket Pool node and begin staking. If not, please review the previous sections and return here once you've completed those steps.
Now that you have the Smartnode installed, starting the stack is easy. Simply enter the following command:
This command will create all of the necessary Docker images if they don't already exist, make sure the Rocket Pool docker network and storage volumes have been initialized, and update any containers if they no longer match the configuration settings from rocketpool service config
's UI.
The first time you do it, the output should look like this:
If it does, then the Smartnode stack has been successfully initialized and is now running.
If you ever need to stop the services (for example, during an upgrade or because you need to do maintenance), you can use rocketpool service stop
to shut everything down.
The output should look like this:
NOTE
Once you call this, Rocket Pool will not automatically start after a system reboot. You will have to callrocketpool service start
to start all of the Docker containers and enable auto-start on reboot again.Once the containers or services are up, a good first step is to confirm that you have the correct versions of the clients and are on the network that you expect. You can do this with the following command:
The output will look like this (note that you may have a newer version than what is displayed here, this is just an example):
The first line will tell you if your Smartnode is configured for the Ethereum mainnet or for the Holesky testnet.
For Docker / Hybrid users: If you are not on the network you expect to be on, go back to the Installing Rocket Pool section and review the installation instructions - you may have missed the portion that has different instructions depending on which network you want to use.
For Native users:
If you accepted the default settings when you first ran rp service config
, then it's possible that the network reported here is incorrect.
Simply switch it in the rp service config
TUI, in the Smartnode
section, to the proper network and restart your node
and watchtower
services.
The second set of lines will tell you which clients you're using, and which versions of them are defined in Rocket Pool's configuration.
Now that the Smartnode services have been started, it's a good idea to check that they're running correctly without errors.
The first thing to check is whether the Docker containers are running well, or if they are constantly restarting due to an error. Run the following command:
The results should look like this:
The key thing to check is the STATUS
column.
If none of the entries state Restarting...
, then the containers should be running properly (see the below note for an exception about the rocketpool_validator
container).
NOTE
If you are using Prysm or Lodestar as your Consensus client, you will likely notice therocketpool_validator
container is constantly restarting.
This is okay!
The validator container will fail until a new validator has been created using the rocketpool node deposit
command, which we will cover in the Creating a Minipool (Validator) section.
Once this is done, the container will function correctly - until then, just ignore it.Still, it might be useful to check the logs of the various services.
To check on the logs, use the rocketpool service logs container
command, where container
is one of eth1
, eth2
, validator
, api
, node
, or watchtower
.
For example, to check the logs for your ETH1 client:
You should do this for both eth1
and eth2
to make sure both clients are running without any errors.
When you're done looking at the logs, you can exit and return to the command prompt using Ctrl + C
.
Now that your clients have started up, you're going to want to wait until your Execution and Consensus clients have finished syncing with the network before proceeding.
One easy way to check on their status is with the following command:
This command will show how far along your Execution & Consensus clients are in the syncing process, similar to this:
You can call this occasionally to keep tabs on your clients' progress.
To get an actual ETA of the sync time, it's easiest to look at the logs for your clients with rocketpool service logs eth1
and rocketpool service logs eth2
respectively (or the equivalent log script commands if you're using the hybrid / native modes.)
Each client typically provides an ETA on its sync status in its log output.
It can take days to fully sync both ETH1 and ETH2 depending on your client selection and your machine's hardware profile. This is expected. Sit back, relax, and wait for both of them to finish.
If your node is not syncing at all or has no peers, it may be because your router is blocking ports 30303 and 9001. If they're closed, you'll need to setup port forwarding on your router. Also, make sure your node has a static local IP address so the port forwarding does not break due to your node getting a new address.
Once your clients have synced, you're ready to either create a new wallet if this is your first node, or recover an existing wallet if you're restoring from a backup or migrating from another provider such as Allnodes to your own hardware.
Select which one you'd like to learn more about and follow the steps in the corresponding guide.