This document contains instructions for setting up an Eth2 mainnet staking system. Medalla testnet instructions are available here.
These instructions have been developed to configure an Eth2 mainnet staking system using Ubuntu 20.04 LTS on an Intel NUC 10i5FNK with 2TB SSD and 32GB RAM. These instructions are primarily for my own purposes, so that I can recreate my environment if I need to. They are not intended to represent best practices and may not be applicable to your hardware, software, or network configuration. There are many other good sources for instructions on setting up these services, and those may be more generally written and applicable.
Setup includes installation and configuration of the following services, including setting up systemd to automatically run services, where applicable:
- Prysm Beacon Chain
- Prysm Validator
- geth
- Prometheus
- Grafana
- node_exporter
- blackbox_exporter
- json_exporter
Steps to install and configure all software have been copied from or inspired by a number of sources, which are cited at the end of this file. Discord discussions may have provided additional details or ideas. In addition, though I have never been a professional Linux administrator, I have many years experience running Linux servers for a variety of public and private hobby projects, which may have informed some of my decisions, for better or worse.
This process assumes starting from first login on a clean Ubuntu 20.04 LTS installation, and were last tested on August 1, 2020.
If you have not updated the BIOS on your system, find and follow the manufacturer instructions for updating the BIOS. An updated BIOS may improve system performance or repair issues with your system. Instructions will vary dependent on the hardware you are using, but the following links should direct Intel NUC users to appropriate instructions.
After a power failure, you may want your staking system to automatically restart and resume staking. Unfortunately, this is not the default behavior of many systems. Please check your system documentation to determine how to change this behavior in the system BIOS. For an Intel NUC, please check the following instructions.
After an initial install, it is a good idea to update everything to the latest versions.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt-get autoremove
sudo reboot
Run the following command to see the list of time zones, then copy the appropriate time zone to your clipboard.
timedatectl list-timezones
Run the following command, replacing <SELECTED_TIMEZONE>
with the time zone you have copied onto your clipboard.
sudo timedatectl set-timezone <SELECTED_TIMEZONE>
Installing net-tools in order to determine network device via ifconfig.
sudo apt-get install net-tools
sudo apt-get install make
Ubuntu Desktop users may need to install curl to continue.
sudo apt-get install curl
A geth full node is required to provide access to deposits made to the deposit contract. It could take many days for geth to sync, so start this process immediately.
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum
sudo adduser --home /home/geth --disabled-password --gecos 'Go Ethereum Client' geth
This sets up geth to automatically run on start.
sudo nano /etc/systemd/system/geth.service
Copy and paste the following text into the geth.service file.
[Unit]
Description=Ethereum 1 Go Client
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=5
User=geth
WorkingDirectory=/home/geth
ExecStart=/usr/bin/geth --http --http.addr 0.0.0.0
[Install]
WantedBy=multi-user.target
Start and enable the validator service.
sudo systemctl daemon-reload
sudo systemctl start geth
sudo systemctl enable geth
sudo adduser --home /home/beacon --disabled-password --gecos 'Ethereum 2 Beacon Chain' beacon
sudo adduser --home /home/validator --disabled-password --gecos 'Ethereum 2 Validator' validator
sudo -u beacon mkdir /home/beacon/bin
sudo -u validator mkdir /home/validator/bin
cd /home/validator/bin
sudo -u validator curl https://raw.githubusercontent.com/prysmaticlabs/prysm/master/prysm.sh --output prysm.sh && sudo -u validator chmod +x prysm.sh
cd /home/beacon/bin
sudo -u beacon curl https://raw.githubusercontent.com/prysmaticlabs/prysm/master/prysm.sh --output prysm.sh && sudo -u beacon chmod +x prysm.sh
This sets up prysm.sh to automatically run on start. This file is slightly different than the version under the Building Prysm section.
sudo nano /etc/systemd/system/beacon-chain.service
Copy and paste the following text into the beacon-chain.service file.
[Unit]
Description=Ethereum 2 Beacon Chain
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=5
User=beacon
ExecStart=/home/beacon/bin/prysm.sh beacon-chain --config-file /home/beacon/prysm-beacon.yaml
[Install]
WantedBy=multi-user.target
Alias=beacon
sudo nano /etc/systemd/system/validator.service
Copy and paste the following text into the validator.service file.
[Unit]
Description=Ethereum 2 Validator
Wants=beacon-chain.service
After=beacon-chain.service
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=5
User=validator
ExecStart=/home/validator/bin/prysm.sh validator --config-file /home/validator/prysm-validator.yaml
[Install]
WantedBy=multi-user.target
sudo -u beacon nano /home/beacon/prysm-beacon.yaml
Copy and paste the following text into the prysm-beacon.yaml configuration file.
datadir: "/home/beacon/prysm"
p2p-host-ip: "XXX.XXX.XXX.XXX"
http-web3provider: "http://YYY.YYY.YYY.YYY:8545"
monitoring-host: "0.0.0.0"
p2p-tcp-port: 13000
p2p-udp-port: 12000
accept-terms-of-use: true
- If you have a dynamic IP address, remove the
p2p-host-ip
line. Otherwise, updateXXX.XXX.XXX.XXX
to your external IP address. - Update
YYY.YYY.YYY.YYY
to the IP address of your Eth1 node. - The
p2p-tcp-port
andp2p-udp-port
lines are optional if you use the default values of 13000 and 12000, respectively.
Change permissions of the file.
sudo -u beacon chmod 600 /home/beacon/prysm-beacon.yaml
sudo -u validator nano /home/validator/prysm-validator.yaml
Copy and paste the following text into the prysm-validator.yaml configuration file.
monitoring-host: "0.0.0.0"
graffiti: "YOUR_GRAFFITI_HERE"
beacon-rpc-provider: "127.0.0.1:4000"
wallet-password-file: "/home/validator/.eth2validators/wallet-password.txt"
accept-terms-of-use: true
graffiti
can be changed to whatever text you would prefer.
Change permissions of the file.
sudo -u validator chmod 600 /home/validator/prysm-validator.yaml
Follow the latest instructions at launchpad.ethereum.org or the correct launch pad for the network to which you will be connecting.
Look for the latest eth2.0-deposit-cli here.
cd
wget https://github.com/ethereum/eth2.0-deposit-cli/releases/download/v1.0.0/eth2deposit-cli-9310de0-linux-amd64.tar.gz
tar xzvf eth2deposit-cli-9310de0-linux-amd64.tar.gz
mv eth2deposit-cli-9310de0-linux-amd64 eth2deposit-cli
cd eth2deposit-cli
./deposit new-mnemonic --num_validators NUMBER_OF_VALIDATORS --chain mainnet
Change the NUMBER_OF_VALIDATORS
to the number of validators you want to create. Follow the prompts and instructions.
BACKUP YOUR MNEMONIC AND PASSWORD!
The next step is to upload your deposit data file to the launchpad site. If you are using Ubuntu Server, you can either open up the deposit data file and copy it to a file on your desktop computer with the same name, or you can use scp or an equivalent tool to copy the deposit data to your desktop computer.
Follow the instructions by dragging and dropping the deposit file into the launchpad site. Then continue to follow the instructions until your deposit transaction is successful.
sudo -u validator /home/validator/bin/prysm.sh validator accounts import --keys-dir=$HOME/eth2deposit-cli/validator_keys
Follow the prompts. The default wallet directory should be /home/validator/.eth2validators/prysm-wallet-v2
. Use the same password used when you were prompted for a password while running ./deposit new-mnemonic --num_validators NUMBER_OF_VALIDATORS --chain mainnet
.
Create a password file and make it readbable only to the validator account.
sudo -u validator touch /home/validator/.eth2validators/wallet-password.txt && sudo chmod 600 /home/validator/.eth2validators/wallet-password.txt
Edit the file and put the password you entered into the deposit
tool into the wallet-password.txt
file.
sudo nano /home/validator/.eth2validators/wallet-password.txt
Enter the password into the first line and save the file.
Start and enable the validator service.
sudo systemctl daemon-reload
sudo systemctl start beacon-chain validator
sudo systemctl enable beacon-chain validator
The following will set up prometheus for collecting data, grafana for displaying dashboards, node_exporter for providing system data to prometheus, and blackbox_exporter for providing ping data to prometheus.
node_exporter and blackbox_exporter are optional, though some charts on the dashboard provided may need to be removed if those tools are not used. The prometheus configuration file may also need to be updated.
sudo adduser --system prometheus --group --no-create-home
Find the URL to the latest amd64 version of Prometheus at https://prometheus.io/download/. In the commands below, replace any references to the version 2.23.0 to the latest version available.
cd
wget https://github.com/prometheus/prometheus/releases/download/v2.23.0/prometheus-2.23.0.linux-amd64.tar.gz
tar xzvf prometheus-2.23.0.linux-amd64.tar.gz
cd prometheus-2.23.0.linux-amd64
sudo cp promtool /usr/local/bin/
sudo cp prometheus /usr/local/bin/
sudo chown root:root /usr/local/bin/promtool /usr/local/bin/prometheus
sudo chmod 755 /usr/local/bin/promtool /usr/local/bin/prometheus
cd
rm prometheus-2.23.0.linux-amd64.tar.gz
sudo mkdir -p /etc/prometheus/console_libraries /etc/prometheus/consoles /etc/prometheus/files_sd /etc/prometheus/rules /etc/prometheus/rules.d
Copy and paste the following text into the prometheus.yml configuration file:
sudo nano /etc/prometheus/prometheus.yml
global:
scrape_interval: 15s
scrape_configs:
- job_name: 'prometheus'
scrape_interval: 5s
static_configs:
- targets: ['127.0.0.1:9090']
- job_name: 'beacon node'
scrape_interval: 5s
static_configs:
- targets: ['127.0.0.1:8080']
- job_name: 'node_exporter'
scrape_interval: 5s
static_configs:
- targets: ['127.0.0.1:9100']
- job_name: 'validator'
scrape_interval: 5s
static_configs:
- targets: ['127.0.0.1:8081']
- job_name: 'ping_google'
metrics_path: /probe
params:
module: [icmp]
static_configs:
- targets:
- 8.8.8.8
relabel_configs:
- source_labels: [__address__]
target_label: __param_target
- source_labels: [__param_target]
target_label: instance
- target_label: __address__
replacement: 127.0.0.1:9115 # The blackbox exporter's real hostname:port.
- job_name: 'ping_cloudflare'
metrics_path: /probe
params:
module: [icmp]
static_configs:
- targets:
- 1.1.1.1
relabel_configs:
- source_labels: [__address__]
target_label: __param_target
- source_labels: [__param_target]
target_label: instance
- target_label: __address__
replacement: 127.0.0.1:9115 # The blackbox exporter's real hostname:port.
- job_name: json_exporter
static_configs:
- targets:
- 127.0.0.1:7979
- job_name: json
metrics_path: /probe
static_configs:
- targets:
- https://api.coingecko.com/api/v3/simple/price?ids=ethereum&vs_currencies=usd
relabel_configs:
- source_labels: [__address__]
target_label: __param_target
- source_labels: [__param_target]
target_label: instance
- target_label: __address__
replacement: 127.0.0.1:7979
Change the ownership of the prometheus directory.
sudo chown -R prometheus:prometheus /etc/prometheus
sudo mkdir /var/lib/prometheus
sudo chown prometheus:prometheus /var/lib/prometheus
sudo chmod 755 /var/lib/prometheus
sudo nano /etc/systemd/system/prometheus.service
Copy and paste the following text into the prometheus.service file.
[Unit]
Description=Prometheus
Wants=network-online.target
After=network-online.target
[Service]
User=prometheus
Group=prometheus
Type=simple
Restart=always
RestartSec=5
ExecStart=/usr/local/bin/prometheus \
--config.file /etc/prometheus/prometheus.yml \
--storage.tsdb.path /var/lib/prometheus/ \
--web.console.templates=/etc/prometheus/consoles \
--web.console.libraries=/etc/prometheus/console_libraries
[Install]
WantedBy=multi-user.target
sudo systemctl daemon-reload
sudo systemctl start prometheus.service
sudo systemctl enable prometheus.service
cd
sudo apt-get install -y apt-transport-https
sudo apt-get install -y software-properties-common wget
wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add -
sudo add-apt-repository "deb https://packages.grafana.com/oss/deb stable main"
sudo apt-get update
sudo apt-get install grafana-enterprise
Optional: Edit the grafana-server.service
file to add "grafana" as an alias to grafana server. I generally forget that the default name for this service is grafana-server
.
sudo nano /lib/systemd/system/grafana-server.service
At the end of this file, in the [Install]
section, add the following line:
Alias=grafana.service
Start the service.
sudo systemctl daemon-reload
sudo systemctl start grafana-server
sudo systemctl enable grafana-server
Login to grafana at http://XXX.XXX.XXX.XXX:3000/, replacing XXX.XXX.XXX.XXX
with the IP address of your server. If you do not know the IP address, run ifconfig
.
Default username admin
. Default password admin
. Grafana will ask you to set a new password.
- On the left-hand menu, hover over the gear menu and click on Data Sources.
- Then click on the Add Data Source button.
- Hover over the Prometheus card on screen, then click on the Select button.
- Enter
http://127.0.0.1:9090/
into the URL field, then click Save & Test.
- Hover over the plus symbol icon in the left-hand menu, then click on Import.
- Copy and paste the dashboard at https://raw.githubusercontent.com/metanull-operator/eth2-grafana/master/eth2-grafana-dashboard-single-source-beacon_node.json into the "Import via panel json" text box on the screen. If you used an older version of these instructions, where the Prometheus configuration file uses the beacon node job name of "beacon" instead of "beacon node", please (use this dashboard)[https://raw.githubusercontent.com/metanull-operator/eth2-grafana/master/eth2-grafana-dashboard-single-source.json] instead for backwards compatibility.
- Then click the Load button.
- Then click the Import button.
Note: At this point in the process, any widgets showing details from the validator will show "N/A", because the validator still has no keys configured. As soon as keys are configured for the validator, the validator details should begin to show up.
A few of the queries driving the Grafana dashboard may need different settings, depending on your hardware.
To ensure that network traffic is correctly reflected on your Grafana dashboard, update the network interface in the Network Traffic widget. Run the following command to find your Linux network device.
ifconfig
Output of the command should look like the following:
eno1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.10 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::1e69:7aff:fe63:14b0 prefixlen 64 scopeid 0x20<link>
ether 1c:69:7a:63:14:b0 txqueuelen 1000 (Ethernet)
RX packets 238936 bytes 78487335 (78.4 MB)
RX errors 0 dropped 1819 overruns 0 frame 0
TX packets 257824 bytes 112513038 (112.5 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
device interrupt 16 memory 0x96300000-96320000
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 39805 bytes 29126770 (29.1 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 39805 bytes 29126770 (29.1 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Of the two entries shows above, the first lists my IP address on the second line, network interface eno1
. Find the entry that represents the network connection you want to monitor and copy the device name, which is the part before the colon on the first line of each entry. In my case the value is eno1
.
- Go to the Grafana dashboard previously installed
- Find the Network Traffic widget, and open the drop down that can be found by the Network Traffic title.
- Click Edit.
- There will be four references to
eno1
in the queries that appear. Replace all four with the name of the network interface you found in theifconfig
command.
sudo adduser --system node_exporter --group --no-create-home
cd
wget https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-amd64.tar.gz
tar xzvf node_exporter-1.0.1.linux-amd64.tar.gz
sudo cp node_exporter-1.0.1.linux-amd64/node_exporter /usr/local/bin/
sudo chown node_exporter:node_exporter /usr/local/bin/node_exporter
rm node_exporter-1.0.1.linux-amd64.tar.gz
sudo nano /etc/systemd/system/node_exporter.service
Copy and paste the following text into the node_exporter.service file.
[Unit]
Description=Node Exporter
[Service]
Type=simple
Restart=always
RestartSec=5
User=node_exporter
ExecStart=/usr/local/bin/node_exporter
[Install]
WantedBy=multi-user.target
sudo systemctl daemon-reload
sudo systemctl start node_exporter.service
sudo systemctl enable node_exporter.service
Install go, if you haven't already.
sudo apt-get install golang-1.14-go
# Create a symlink from /usr/bin/go to the new go installation
sudo ln -s /usr/lib/go-1.14/bin/go /usr/bin/go
sudo adduser --system json_exporter --group --no-create-home
cd
git clone https://github.com/prometheus-community/json_exporter.git
cd json_exporter
make build
sudo cp json_exporter /usr/local/bin/
sudo chown json_exporter:json_exporter /usr/local/bin/json_exporter
sudo mkdir /etc/json_exporter
sudo chown json_exporter:json_exporter /etc/json_exporter
sudo nano /etc/json_exporter/json_exporter.yml
Copy and paste the following text into the json_exporter.yml file.
metrics:
- name: ethusd
path: $.ethereum.usd
help: Ethereum (ETH) price in USD
Change ownership of the configuration file to the json_exporter account.
sudo chown json_exporter:json_exporter /etc/json_exporter/json_exporter.yml
sudo nano /etc/systemd/system/json_exporter.service
Copy and paste the following text into the node_exporter.service file.
[Unit]
Description=JSON Exporter
[Service]
Type=simple
Restart=always
RestartSec=5
User=json_exporter
ExecStart=/usr/local/bin/json_exporter --config.file /etc/json_exporter/json_exporter.yml
[Install]
WantedBy=multi-user.target
sudo systemctl daemon-reload
sudo systemctl start json_exporter.service
sudo systemctl enable json_exporter.service
For now, I prefer to use ntpd over the default systemd-timesyncd for syncing my system clock to an official time source.
From this tutorial on setting up time syncing on Ubuntu.
Though timesyncd is fine for most purposes, some applications that are very sensitive to even the slightest perturbations in time may be better served by ntpd, as it uses more sophisticated techniques to constantly and gradually keep the system time on track.
sudo apt-get install ntp
Update the NTP pool time server configuration to those that are geographically close to you. See http://support.ntp.org/bin/view/Servers/NTPPoolServers to find servers near you.
sudo nano /etc/ntp.conf
Look for lines that begin with server
and replace the current values with the values you identified from ntp.org.
Restart ntp. This will automatically shut down systemd-timesyncd, the default Ubuntu time syncing solution.
sudo systemctl restart ntp
I have used blackbox_exporter to provide ping time data between my staking system and two DNS providers. Data is sent to Prometheus and on to Grafana. I have not found a practical use for this yet, though I have seen some interesting short-term shifts in ping times to Google. Therefore, blackbox_exporter is optional.
The Grafana dashboard in these instructions includes a panel with a ping time graph. If you choose not to install blackbox_exporter, simply remove that panel from your Grafana dashboard. It will not show data.
sudo adduser --system blackbox_exporter --group --no-create-home
cd
wget https://github.com/prometheus/blackbox_exporter/releases/download/v0.18.0/blackbox_exporter-0.18.0.linux-amd64.tar.gz
tar xvzf blackbox_exporter-0.18.0.linux-amd64.tar.gz
sudo cp blackbox_exporter-0.18.0.linux-amd64/blackbox_exporter /usr/local/bin/
sudo chown blackbox_exporter:blackbox_exporter /usr/local/bin/blackbox_exporter
sudo chmod 755 /usr/local/bin/blackbox_exporter
Allow blackbox_exporter to ping servers.
sudo setcap cap_net_raw+ep /usr/local/bin/blackbox_exporter
rm blackbox_exporter-0.18.0.linux-amd64.tar.gz
sudo mkdir /etc/blackbox_exporter
sudo chown blackbox_exporter:blackbox_exporter /etc/blackbox_exporter
sudo nano /etc/blackbox_exporter/blackbox.yml
Copy and paste the following text into the blackbox.yml file.
modules:
icmp:
prober: icmp
timeout: 10s
icmp:
preferred_ip_protocol: ipv4
Change ownership of the configuration file to the blackbox_exporter account.
sudo chown blackbox_exporter:blackbox_exporter /etc/blackbox_exporter/blackbox.yml
sudo nano /etc/systemd/system/blackbox_exporter.service
Copy and paste the following text into the blackbox_exporter.service file.
[Unit]
Description=Blackbox Exporter
[Service]
Type=simple
Restart=always
RestartSec=5
User=blackbox_exporter
ExecStart=/usr/local/bin/blackbox_exporter --config.file /etc/blackbox_exporter/blackbox.yml
[Install]
WantedBy=multi-user.target
sudo systemctl daemon-reload
sudo systemctl start blackbox_exporter.service
sudo systemctl enable blackbox_exporter.service
You may need to configure your router to forward the following ports to your staking system. See your router documentation for details.
Prysm Beacon Chain: 12000/udp Prysm Beacon Chain: 13000/tcp geth: 30303/udp geth: 30303/tcp
The following changes can be made to increase the security of SSH, but are not required.
sudo nano /etc/ssh/sshd_config
Add the following lines, but replacing with your login. You are not logging in to ssh with root, right? If you are, you probably don't want to add the AllowUsers
and PermitRootLogin
lines below.
AllowUsers <LOGIN>
PermitEmptyPasswords no
PermitRootLogin no
Protocol 2
Optional: I prefer to change the default SSH port to a non-standard port. Do not forget what you change this to. Find the following line, uncomment it line by removing the "#", and replace "22" with your preferred port.
#Port 22
sudo reboot
If your staking system is behind a router with a firewall, you may not want to add another level of firewall to your network security. This section may be skipped.
The following commands set up the minimal firewall rules necessary to run the Prysm beacon-chain and geth
# beacon chain
sudo ufw allow 12000/udp
sudo ufw allow 13000/tcp
# geth
sudo ufw allow 30303/tcp
sudo ufw allow 30303/udp
# grafana
sudo ufw allow 3000/tcp
Run the following command to set up firewalls rules for SSH. If you changed your default SSH port above, change the 22
in this command to the port you are using.
# ssh
sudo ufw allow 22/tcp
Set up default firewall rules and enable the firewall.
# Defaults
sudo ufw default deny incoming
sudo ufw default allow outgoing
sudo ufw enable
The following commands open up the remaining ports that are used by the software in this set of instructions. These ports are typically used only by other software internal to the staking system, and do not need to be opened on the firewall unless you would like direct access to some of the administrative/metrics pages, or if systems external to your staking system will be services on your staking system.
# beacon chain
# - This only needs to be enabled if external validators will be accessing this beacon chain.
sudo ufw allow 4000/tcp
# node_exporter
# - This only needs to be enabled if you want to access node_exporter stats directly.
sudo ufw allow 9100/tcp
#geth
# - This only needs to be enabled if external beacon chains will be accessing this geth full node.
sudo ufw allow 8545/tcp
# beacon-chain metrics
# - This only needs to be enabled if you want to access beacon-chain stats directly.
sudo ufw allow 8080/tcp
# blackbox_exporter
# - This only needs to be enabled if you want to access blackbox_exporter stats directly.
sudo ufw allow 9115/tcp
# prometheus
# - This only needs to be enabled if you want to access prometheus directly.
sudo ufw allow 9090/tcp
# json_exporter
# - This only needs to be enabled if you want to access blackbox_exporter stats directly.
sudo ufw allow 7979/tcp
The following are some common commands you may want to use while running this setup.
To see the status of system services:
sudo systemctl status beacon-chain
sudo systemctl status validator
sudo systemctl status geth
sudo systemctl status prometheus
sudo systemctl status grafana-server
sudo systemctl status node_exporter
sudo systemctl status blackbox_exporter
sudo systemctl status json_exporter
Or, to see the status of all at once:
sudo systemctl status beacon-chain validator geth prometheus grafana-server node_exporter blackbox_exporter json_exporter
To watch the logs in real time:
sudo journalctl -u beacon-chain -f
sudo journalctl -u validator -f
sudo journalctl -u geth -f
sudo journalctl -u prometheus -f
sudo journalctl -u grafana-server -f
sudo journalctl -u node_exporter -f
sudo journalctl -u blackbox_exporter -f
sudo journalctl -u json_exporter -f
To restart a service:
sudo systemctl restart beacon-chain
sudo systemctl restart validator
sudo systemctl restart geth
sudo systemctl restart prometheus
sudo systemctl restart grafana-server
sudo systemctl restart node_exporter
sudo systemctl restart blackbox_exporter
sudo systemctl restart json_exporter
Stopping a service is separate from disabling a service. Stopping a service stops the current execution of the server, but does not prohibit the service from starting again after a system reboot. If you intend for the service to stop running and to not restart after a reboot, you will want to stop and disable a service.
To stop a service:
sudo systemctl stop beacon-chain
sudo systemctl stop validator
sudo systemctl stop geth
sudo systemctl stop prometheus
sudo systemctl stop grafana-server
sudo systemctl stop node_exporter
sudo systemctl stop blackbox_exporter
sudo systemctl stop json_exporter
Important: If you intend to stop the beacon chain and validator in order to run these services on a different system, stop the services using the instructions in this section, and disable these services following the instructions in the next section. You will be at risk of losing funds through slashing if you accidentally validate the same keys on two different systems, and failing to disable the services may result in your beacon chain and validator running again after a system reboot.
To disable a service so that it no longer starts automatically after a reboot:
sudo systemctl disable beacon-chain
sudo systemctl disable validator
sudo systemctl disable geth
sudo systemctl disable prometheus
sudo systemctl disable grafana-server
sudo systemctl disable node_exporter
sudo systemctl disable blackbox_exporter
sudo systemctl disable json_exporter
To re-enable a service that has been disabled:
sudo systemctl enable beacon-chain
sudo systemctl enable validator
sudo systemctl enable geth
sudo systemctl enable prometheus
sudo systemctl enable grafana-server
sudo systemctl enable node_exporter
sudo systemctl enable blackbox_exporter
sudo systemctl enable json_exporter
Re-enabling a service will not necessarily start the service as well. To start a service that is stopped:
sudo systemctl start beacon-chain
sudo systemctl start validator
sudo systemctl start geth
sudo systemctl start prometheus
sudo systemctl start grafana-server
sudo systemctl start node_exporter
sudo systemctl start blackbox_exporter
sudo systemctl start json_exporter
Upgrading the Prysm beacon chain and validator clients is as easy as restarting the service when running the prysm.sh script as we are in these instructions. To upgrade to the latest release, simple restart the services. Use the commands above to check the log files of both the beacon chain and validator. If any important command line flags have changed, a notice should appear in the logs. Even better, read the release notes in advance of an upgrade.
sudo systemctl restart beacon-chain
sudo systemctl restart validator
If you edit any of the systemd service files in /etc/systemd/system
or another location, run the following command prior to restarting the affected service:
sudo systemctl daemon-reload
Then restart the affected service:
sudo systemctl restart SERVICE_NAME
- Replace SERVICE_NAME with the name of the service for which the service file was updated. For example,
sudo systemctl restart beacon-chain
.
To update the configuration options of the beacon chain or validator, edit the Prysm configuration file located in the home directories for the services.
sudo nano /home/validator/prysm-validator.yaml
sudo nano /home/beacon/prysm-beacon.yaml
Then restart the services:
sudo systemctl restart validator
sudo systemctl restart beacon-chain
There are at least one area where I may expand on my system configuration or instructions, but I have not pursued it yet.
- SSH Key-Based Login
- This seems to be a good security move, but it also seems to be the perfect way to get me locked out of my own system. I have never set this up before, but may look into it.
Prysm: https://docs.prylabs.network/docs/getting-started/
Go: https://ubuntu.pkgs.org/20.04/ubuntu-main-arm64/golang-1.14-go_1.14.2-1ubuntu1_arm64.deb.html
Timezone: https://linuxize.com/post/how-to-set-or-change-timezone-on-ubuntu-20-04/
Account creation and systemd setup: https://github.com/attestantio/ubuntu-server
blackbox_exporter: https://github.com/prometheus/blackbox_exporter
node_exporter: https://github.com/prometheus/node_exporter
Prometheus: https://prometheus.io/docs/prometheus/latest/getting_started/
Grafana: https://grafana.com/docs/grafana/latest/installation/debian/
Dashboard: https://github.com/metanull-operator/eth2-grafana
systemd: https://www.freedesktop.org/software/systemd/man/systemd.unit.html
geth: https://geth.ethereum.org/docs/install-and-build/installing-geth
sshd: https://blog.devolutions.net/2017/04/10-steps-to-secure-open-ssh
ufw: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu-18-04
ufw: https://www.digitalocean.com/community/tutorials/ufw-essentials-common-firewall-rules-and-commands
ntpd: https://www.digitalocean.com/community/tutorials/how-to-set-up-time-synchronization-on-ubuntu-18-04