Binary Info
sudo apt update
sudo apt upgrade -y
sudo apt install git build-essential curl jq -y
ver="1.21.5"
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
go version
# go version 1.21.5 ...
go install cosmossdk.io/tools/cosmovisor/cmd/[email protected]
cd $HOME
wget -O junctiond https://github.com/airchains-network/junction/releases/download/v0.1.0/junctiond &&\
chmod +x junctiond &&\
if [ ! -d "$HOME/go/bin" ]; then
mkdir -p $HOME/go/bin
fi
mv $HOME/junctiond $HOME/go/bin
junctiond init NODE_NAME --chain-id junction --home $HOME/.junction
junctiond config set client chain-id junction
junctiond config set client keyring-backend test
junctiond config set client node tcp://localhost:26657
cd $HOME
export DAEMON_NAME=junctiond
export DAEMON_HOME=$HOME/.junction
cosmovisor init $(which junctiond)
wget -O $HOME/.junction/config/genesis.json "https://snapshot-de-1.genznodes.dev/archains/genesis.json"
wget -O $HOME/.junction/config/addrbook.json "https://snapshot-de-1.genznodes.dev/archains/addrbook.json"
sudo tee /etc/systemd/system/junctiond.service > /dev/null <<EOF
[Unit]
Description="Airchains daemon node"
After=network-online.target
[Service]
User=$USER
Environment="DAEMON_NAME=junctiond"
Environment="DAEMON_HOME=$HOME/.junction"
Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=false"
Environment="DAEMON_RESTART_AFTER_UPGRADE=true"
Environment="UNSAFE_SKIP_BACKUP=true"
Environment="DAEMON_PREUPGRADE_MAX_RETRIES=0"
Environment="DAEMON_LOG_BUFFER_SIZE=512"
ExecStart=$(which cosmovisor) run start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable junctiond
sudo systemctl start junctiond
journalctl -fu junctiond -o cat
1. Error: binary not present
Error: binary not present
stat $HOME/.junction/cosmovisor/upgrades/[UPGRADE_NAME]/bin/junctiond: no such file or directory"
junctiond.service: Main process exited, code=exited, status=1/FAILURE
junctiond.service: Failed with result 'exit-code'.
export DAEMON_NAME=junctiond
export DAEMON_HOME=$HOME/.junction
cosmovisor add-upgrade [UPGRADE_NAME] $(which junctiond)
journalctl -fu junctiond -o cat