Manual

Build the Node from scratch step by step

1. Install Dependencies

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 you can skip this step

check your GO version:

ver="1.19.5"
cd $HOME
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" >> ~/.bash_profile
source ~/.bash_profile
go version

  1. Download and Install Binary

cd $HOME
rm -rf planq/
git clone https://github.com/planq-network/planq.git
cd planq/
git fetch
git checkout v1.0.5
make build

  1. Install Cosmovisor

  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