This manual offers a detailed, step-by-step approach for establishing and operating a full node on the Junction, utilizing pre-assembled binaries. Designed to be user-friendly, it caters to both newcomers and seasoned node operators, ensuring an easy-to-follow procedure.
tip: the following commands are executed as root by default. If you are not a root user, please prepend the commands with sudo
Requirements
The minimum hardware requirements for running an Junction node are:
export TAG=v0.1.0
wget https://github.com/airchains-network/junction/releases/download/$TAG/junctiond
chmod +x junctiond && mv junctiond /usr/local/bin
junctiond version --long | grep -e version -e commit
Junction basic setup
# Set home dir, example: /data/junction
export DIR=/data/junction
export Moniker="xx"
mkdir -pv $DIR
ln -sv $DIR $HOME/.junction
# A moniker is a human-readable name for your node. Moniker can contain only ASCII characters, and cannot exceed 70 characters.
junctiond init $Moniker