Node setup for Juno Network

Node setup requres some basic knowlage of Linux OS and server managment. Setting up the node can be daunting and chalanging task. This is a short guide how to set up the node.

Update the system and install the essentials:

sudo apt update && sudo apt full-upgrade -y && apt install build-essential 
sudo apt install vim /or apt install nano 
sudo apt install entr jq make git ufw wget 

Install GO and Cosmovisor

sudo rm -r /usr/local/go/
wget https://golang.org/dl/go1.22.2.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.22.2.linux-amd64.tar.gz
rm go1.22.2.linux-amd64.tar.gz
echo 'export PATH=$PATH:/usr/local/go/bin' >> $HOME/.bashrc
echo 'export PATH=$PATH:$HOME/go/bin' >> $HOME./bashrc
source $HOME/.bashrc
 
# Install cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/[email protected]
sudo mv ~/go/bin/cosmovisor /usr/local/bin

Clone the repository and install node binary

cd $HOME 
git clone https://github.com/CosmosContracts/juno
cd juno 
git checkout v24.0.0 # always doublecheck from the official team for the right version
make install

Set up cosmovisor

mkdir -p $HOME/.juno/cosmovisor/genesis/bin
mkdir -p $HOME/.juno/cosmovisor/upgrades
mv $HOME/go/bin/junod $HOME/.juno/cosmovisor/genesis/bin/
sudo ln -s $HOME/.juno/cosmovisor/genesis $HOME/.juno/cosmovisor/current -f
sudo ln -s $HOME/.juno/cosmovisor/current/bin/junod /usr/local/bin/junod -f
 
# Create service file
 
sudo tee /etc/systemd/system/junod.service > /dev/null <<EOF
[Unit]
Description=Juno node”
After=network-online.target
 
[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
WorkingDirectory=$HOME/.juno
Restart=on-failure 
RestartSec=5
LimitNOFILE=65535
Environment=”DAEMON_NAME=junod”
Environment=”DAEMON_HOME=$HOME/.juno”
Environment=”DAEMON_ALLOW_DOWNLOAD_BINARIES=false”
Environment=”DAEMON_RESTART_AFTER_UPGRADE=true”
Environment=”UNSAFE_SKIP_BACKUP=true”
Environment=”PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:$HOME/.juno/cosmovisor/current/bin”
 
[Install]
WantedBy=multi-user.target
EOF
 
sudo systemctl daemon-reload
sudo systemctl enable junod.service

Set up the node

# Please when using this guide replace “YOUR_MONIKER” with name for your node.
 
junod init YOUR_MONIKER --chain-id juno-1
 
# Get address book and genesis.json
wget https://raw.githubusercontent.com/Cogwheel-Validator/docs/main/files/juno/genesis.json -O $HOME/.juno/config/genesis.json
wget https://raw.githubusercontent.com/Cogwheel-Validator/docs/main/files/juno/addrbook.json -O $HOME/.juno/config/addrbook.json
 
#Set minimum gas prices
sed -i -e “s|^minimum-gas-prices *=.*|minimum-gas-prices = \”0.025ujuno,0.003ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9,0.025ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF,0.025ibc/EAC38D55372F38F1AFD68DF7FE9EF762DCF69F26520643CF3F9D292A738D8034\”| $HOME/.juno/config/app.toml

Use snapshot or state sync to catch up.

Links to snapshots. You only need from one provider.

https://polkachu.com/tendermint_snapshots/juno
https://services.stake-town.com/home/mainnet/juno/sync

Start the node

sudo systemctl start junod && sudo journalctl -fu junod -o cat