Manual

Build the Node from scratch step by step

1. Install Dependencies

circle-info

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

circle-info

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

circle-info

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

  1. Create Symbolic Links for Cosmovisor

  1. Set Config App

circle-info

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

circle-info

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

circle-info

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

Last updated