Installation
Manual Installation
Install dependencies
sudo apt update && sudo apt upgrade -y
sudo apt install curl iptables build-essential git wget jq make gcc nano tmux htop nvme-cli pkg-config libssl-dev libleveldb-dev tar clang bsdmainutils ncdu unzip libleveldb-dev -ycd $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/binDownload and build binaries
git clone https://github.com/xrplevm/node xrpl && cd xrpl
git checkout v6.0.0
make install
exrpd version --long | grep -e version -e commit
# version: v6.0.0
# commit: 6688ca628b4787b41c9f8cfe431dd718753f542bConfig init app
Download Genesis and Addrbook
Set seeds and peers
Config Pruning
set minimum gas price, enable prometheus and disable indexing
create service file
enable and start service
Snapshot
Stop the service and reset the data
Download latest snapshot
Restart the service and check the log
Auto Installation
Sync Node
Run a Validator
Last updated