βš™οΈInstallation

Update & upgrade tools:

sudo apt update && sudo apt upgrade -y
sudo apt install make net-tools curl git wget htop tmux build-essential jq make lz4 gcc unzip -y

Install GO:

cd $HOME
VER="1.23.2"
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/bin

or just this to use go on other user:

[ ! -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/bin

Cloning Kopi repository and installing it locally:

Check Kopi version

INITIA NODE:

Set var:

Port=25

config and init app

Custom Port:

set custom ports in app.toml

set custom ports in config.toml file

Downloading genesis and adjust config files...:

Setting pruning

Disable indexer

Enable Prometheus

Downloading chain data:

Addrbook:

Create service:

Service:

Stop service:

CHECK:

Check status:

Check log:

Check Sync:

Check validator info:

Delete node:

Make sure you have backup your validator before do this action:

Node Sync Status Checker

Create Validator

Last updated

Was this helpful?