Manual

Build the Node from scratch step by step

1. Install Dependencies

If you already Installed this dependecies before, you can skip this step

sudo apt update && sudo apt upgrade -y && sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq chrony liblz4-tool -y

  1. Install GO

If you already Installed GO version 1.19.5 or higher you can skip this step

check your GO version:

rm -rf $HOME/go
sudo rm -rf /usr/local/go
cd $HOME
curl https://dl.google.com/go/go1.20.1.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf -
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF
source $HOME/.profile
go version

  1. Download and Install Binary

  1. Install Cosmovisor

If you already Installed cosmovisor before, you can skip this step.

  1. Create Symbolic Links for Cosmovisor

  1. Set Config App

First, create variable for:

  1. Download Addrbook & Genesis

  1. Configure Seeds and Peers

  1. Configure Pruninge

  1. Create Service

  1. Start Node

  1. (Optional) Check Node Status

if you want check your Node logs, run the command below:

if you want check your Node synchronize status, run the command below:

Last updated