Install node on Ubuntu Server 22.04
Home » Install node on Ubuntu Server 22.04

Install a node for your coin on Ubuntu Server 22.04 with the following tutorial.

Update your Ubuntu server with the following command:

sudo apt-get update && sudo apt-get upgrade -y

Download the Linux daemon for your wallet with the following command:

wget "https://dl.walletbuilders.com/download?customer=2e319b4a3192c511773dc63698af84c8c32ed5e4adb46095da&filename=aetheris-daemon-linux.tar.gz" -O aetheris-daemon-linux.tar.gz

Extract the tar file with the following command:

tar -xzvf aetheris-daemon-linux.tar.gz

Download the Linux tools for your wallet with the following command:

wget "https://dl.walletbuilders.com/download?customer=2e319b4a3192c511773dc63698af84c8c32ed5e4adb46095da&filename=aetheris-qt-linux.tar.gz" -O aetheris-qt-linux.tar.gz

Extract the tar file with the following command:

tar -xzvf aetheris-qt-linux.tar.gz

Type the following command to install the daemon and tools for your wallet:

sudo mv aetherisd aetheris-cli aetheris-tx /usr/bin/

Create the data directory for your coin with the following command:

mkdir $HOME/.aetheris

Open nano.

nano $HOME/.aetheris/aetheris.conf -t

Paste the following into nano.

rpcuser=rpc_aetheris
rpcpassword=dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
listen=1
server=1
txindex=1
daemon=1

Save the file with the keyboard shortcut ctrl + x.

Type the following command to start your node:aetherisd