Manual installation
Install Depedencies
sudo apt update && sudo apt upgrade -y
sudo apt install curl git wget htop tmux build-essential jq make lz4 gcc unzip -yInstall Go (can skipped if already install)
cd $HOME
VER="1.23.1"
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"
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
[ ! -d ~/go/bin ] && mkdir -p ~/go/binSett Var for easy installation
Download the binary
Configure and initialize
Download adrbook and genesis file
Configure the prunning
Sett gas price,prometheus and disable indexing
Sett custom port for config.toml
Sett custom port for app.toml
Creating the systemd
apply snapshot
Activating the service 🔥
Last updated