Before node instalation make sure you have installed go
Useful guile: https://www.digitalocean.com/community/tutorials/how-to-install-go-on-ubuntu-20-04
Update system and install build tools
sudo apt update
sudo apt-get install git curl build-essential make jq gcc snapd chrony lz4 tmux unzip bc -y
Install node
cd $HOME
mkdir src
cd src
git clone https://github.com/atomone-hub/govgen
cd govgen
git checkout v1.0.1
make install
gaiad version
Initialize Node
Replace <node_name>
~/go/bin/.govgend init <node_name> --chain-id="govgen-1"
Download genesis.json
curl -Ls https://atomone.fra1.digitaloceanspaces.com/govgen/govgen-1/genesis.json > $HOME/.govgend/config/genesis.json
Download addrbook.json
curl -Ls <addrbookUrl> > $HOME/.govgend/config/addrbook.json
Create Service
Cosmovisor:
If you haven't cosmovisor, you should install it
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest
You can find cosmovisor biniry in ~/go/bin/
folder. After that you should create
mkdir -p ~/.govgen/cosmovisor/genesis/bin && mkdir -p ~/.govgen/cosmovisor/upgrades
Set up service:
sudo nano /etc/systemd/system/govgend.service
Replace <your_user>
[Unit]
Description=govgend Daemon cosmovisor
After=network-online.target
[Service]
User=<your_user>
ExecStart=/home/<your_user>/go/bin/cosmovisor run start
Restart=always
RestartSec=3
LimitNOFILE=4096
Environment="DAEMON_NAME=govgend"
Environment="DAEMON_HOME=/home/<your_user>/.govgend"
Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=false"
Environment="DAEMON_RESTART_AFTER_UPGRADE=true"
Environment="DAEMON_LOG_BUFFER_SIZE=512"
[Install]
WantedBy=multi-user.target
Simple service file:
Set up service:
sudo nano /etc/systemd/system/govgend.service
Replace <your_user>
[Unit]
Description=govgend Daemon
After=network-online.target
[Service]
User=<your_user>
ExecStart=/home/<your_user>/go/bin/govgend start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
Sync node:
After that you sould sync node. You have 2 ways. State-sync or download snapsot. See this guides in next tabs.
Start service
sudo systemctl enable govgend.service && sudo systemctl start govgend.service && journalctl -u govgend.service -f