Hello Cat Boss here! Today we’ll be going through a quick run of how to set up a working full node for Osmosis.
At the time of this posting they are on osmosis-1
.
Official documentation from the osmosis team can be found: https://github.com/osmosis-labs/networks/blob/main/genesis-validators.md
Create a server
We’ll be using Ubuntu 20.04LTS with 4GB RAM / 2 CPUs/ 80GB storage, a little bit less than the recommended in the official documentation but this can be changed later on as you feel the need to upgrade your server.
Remotely ssh into the server using the CLI and create a new user
By default, if you’re using root we recommend switching to another user because “It defeats the security model that’s been in place for years” (You can read the full response here: https://askubuntu.com/questions/16178/why-is-it-bad-to-log-in-as-root)
To create a new user we will do the following:
adduser <username>
usermod -aG sudo <username>
This will create a new user and give it a sudo role. We can test it by switching to this user and running a sudo command:
su - <username>
sudo ls -la /root
You should see something like the following:
General environment setup
The following will prep your environment by updating / upgrading the system and installing the needed libraries to install the osmosis binary.
# Update the system
sudo apt update
sudo apt upgrade
# Install git, gcc and make
sudo apt install git build-essential ufw curl jq snapd --yes
# Install Go with Snap
sudo snap install go --classic
# Export environment variables
echo 'export GOPATH="$HOME/go"' >> ~/.profile
echo 'export GOBIN="$GOPATH/bin"' >> ~/.profile
echo 'export PATH="$GOBIN:$PATH"' >> ~/.profile
source ~/.profile
To verify go is installed:
go version
should return something like this
Install osmosisd
cd $HOME
git clone https://github.com/osmosis-labs/osmosis
cd osmosis
git checkout v1.0.1
make install
[update 2021–08–19]: Osmosis is no longer on v1.0.1
please go and check out the appropriate one!
This will make sure you are in the home directory, clone the osmosis repo and install the correct version.
To verify your installation you can run osmosisd version --long
If you get something like the following, you’ve successfully installed osmosisd on your system.
name: osmosis
server_name: osmosisd
version: '"1.0.1"'
commit: a20dab6d638da0883f9fbb9f5bd222affb8700ad
build_tags: netgo,ledger
go: go version go1.16.3 darwin/amd64
Initialise your node
Before we initialise your node, we recommend saving the current chain id as osmosis-1
using the following command.
osmosisd config chain-id osmosis-1
This will default the chain-id flag to osmosis-1
and save you some time in the future.
To intialise the osmosis working directory we will run the following:
osmosisd init --chain-id=osmosis-1 <your_moniker>
This will generate genesis.json
, node_key.json
, and priv_validator_key.json
in ~/.osmosisd/config/
.
Download the genesis file
curl https://media.githubusercontent.com/media/osmosis-labs/networks/main/osmosis-1/genesis.json > ~/.osmosisd/config/genesis.json
This will replace the genesis file created using osmosisd init
with the genesis file currently being used in osmosis-1
Edit config.toml
In ~./osmosisd/config/config.toml
we will update the following:
Add persistent peers to your config from https://github.com/osmosis-labs/networks/blob/main/peers.md
It should look something like this:
# Comma separated list of nodes to keep persistent connections to
persistent_peers = "7024d1ca024d5e33e7dc1dcb5ed08349768220b9@134.122.42.20:26656,d326ad6dffa7763853982f334022944259b4e7f4@143.110.212.33:26656,e437756a853061cc6f1639c2ac997d9f7e84be67@144.76.183.180:26656,64d36f3a186a113c02db0cf7c588c7c85d946b5b@209.97.132.170:26656,785bc83577e3980545bac051de8f57a9fd82695f@194.233.164.146:26656"
Update minimum-gas-prices
in ~/.osmosisd/config/app.toml
to prevent getting spammed by transactions with no gas.
# The minimum gas prices a validator is willing to accept for processing a
# transaction. A transaction's fees must meet the minimum of any denomination
# specified in this config (e.g. 0.25token1;0.0001token2).
minimum-gas-prices = "0.001uosmo"
Setup Cosmovisor (optional but super recommended)
In order to do automatic on-chain upgrades we will be using cosmovisor. You can read more about it here: https://docs.cosmos.network/master/run-node/cosmovisor.html
# download the cosmovisor binary
go get github.com/cosmos/cosmos-sdk/cosmovisor/cmd/cosmovisor# check the version (it should print DAEMON_NAME is not set)
cosmovisor version
Set up the environment variables
echo "# Setup Cosmovisor" >> ~/.profile
echo "export DAEMON_NAME=osmosisd" >> ~/.profile
echo "export DAEMON_HOME=$HOME/.osmosisd" >> ~/.profile
source ~/.profile# verify by running the following
echo $DAEMON_NAME
Copy the proper files
mkdir -p ~/.osmosisd/cosmovisor/upgrades
mkdir -p ~/.osmosisd/cosmovisor/genesis/bin/
cp $(which osmosisd) ~/.osmosisd/cosmovisor/genesis/bin/# verify by running the following (it should output the same version is running osmosisd version):
cosmovisor version
Opening up proper ports
While opening any ports are optional, it is beneficial to the whole network if you open port 26656
. This would allow new nodes to connect to you as a peer, making them sync faster and the connections more reliable.
For this reason, we will be opening port 26656
using ufw
.
# running this should show it is inactive
sudo ufw status
# Turn on ssh if you need it
sudo ufw allow ssh
# Accept connections to port 26656 from any address
sudo ufw allow from any to any port 26656 proto tcp
# enable ufw
sudo ufw enable
# check ufw is running
sudo ufw status
Start the node (test run)
Before we can all fancy and setup a background service let’s take our node for a test drive.
cosmovisor start
The genesis file is quite big for osmosis-1
so don’t be surprise if it seems like the CLI is hanging there. As long as it doesn’t error out give it a few minutes.
If all is well, we can stop the node and setup a background service
Background service
This will allow the node to run in the background and restart automatically.
sudo tee /etc/systemd/system/osmosisd.service > /dev/null <<EOF
[Unit]
Description=Osmosis Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which cosmovisor) start
Restart=always
RestartSec=3
LimitNOFILE=4096
Environment="DAEMON_HOME=$HOME/.osmosisd"
Environment="DAEMON_NAME=osmosisd"
Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=false"
Environment="DAEMON_RESTART_AFTER_UPGRADE=true"
[Install]
WantedBy=multi-user.target
EOF
Update and start
sudo -S systemctl daemon-reload
sudo -S systemctl enable osmosisd
sudo -S systemctl start osmosisd
Check the status
sudo service osmosisd status
Check the logs
sudo journalctl -u osmosisd -f
Check that the node is syncing up
Some things you can check to make sure your node is syncing up correctly:
Check your sync status (if the output is false then you are all synced up)
osmosisd status 2>&1 | jq "{catching_up: .SyncInfo.catching_up}"
Check that the latest block height is catching up
osmosisd status 2>&1 | jq "{latest_block_height: .SyncInfo.latest_block_height}"
Check that you have peers
curl -sS "http://localhost:26657/net_info?" | jq -r '.result.n_peers'
Conclusion
Congrats! Once your status is no longer catching up you have a fully synced fullnode :)
What you can do next is convert this fullnode into a validator node.