apt-get update
apt-get install libboost-all-dev
Install required dependencies:
sudo apt install g++ git cmake -y
wget https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2
tar --bzip2 -xf boost_1_66_0.tar.bz2
cd boost_1_66_0
./bootstrap.sh
sudo ./b2 install
cd ~
wget https://github.com/nanocurrency/raiblocks/releases/download/V11.2/nano-11.2.0-Linux.tar.bz2
tar xvf nano-11.2.0-Linux.tar.bz2
./rai-11.2.0-Linux/bin/rai_node --daemon
Press ctrl+c to kill process
nano ~/RaiBlocks/config.json
Change: "rpc_enable": "true" Save and quit
cd ~/rai-11.2.0-Linux/bin/
pwd -P
This should output something similar to: /home/stanley/rai-11.2.0-Linux/bin Write down this path for our service file in a future step
ls -l
This should output something similar to: -rwxr-xr-x 1 stanley stanley 8.9M Feb 16 02:25 rai_node Write down the user and group (in this example, both the user and group is stanley) to the left of rai_node, this should be the same as your username
sudo touch /etc/systemd/system/rai_node.service
sudo chmod 664 /etc/systemd/system/rai_node.service
sudo nano /etc/systemd/system/rai_node.service
[Unit]
Description=RaiBlocks node service
After=network.target
[Service]
ExecStart=/home/stanley/rai-11.2.0-Linux/bin/rai_node --daemon #Update this with the link copied from the last step
Restart=on-failure
User=stanley #This user from the last step
Group=stanley #The group from the last step
[Install]
WantedBy=multi-user.target
Be sure to remove the comments (the parts starting at #) as they may cause problems.
sudo service rai_node start
sudo systemctl enable rai_node
ln -s ~/rai-11.2.0-Linux/bin/rai_node /usr/local/sbin/rai_node
You should now have a brand new node up and running, and the blocks syncing.
rai_node --debug_block_count
This will show you how far along the node is to syncing the blocks. You can compare this to the current block count at https://www.nanode.co/blocks to see how far along the syncing process your are