-
Notifications
You must be signed in to change notification settings - Fork 792
Guide: Quickstart to running a node (Ubuntu 16.04)
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/nano-node/releases/download/V11.2/nano-11.2.0-Linux.tar.bz2
tar xvf nano-11.2.0-Linux.tar.bz2
./nano-node-11.2.0-Linux/bin/nano_node --daemon
Press ctrl+c to kill process
nano ~/Nano/config.json
Change: "rpc_enable": "true" Save and quit
cd ~/nano-node-11.2.0-Linux/bin/
pwd -P
This should output something similar to: /home/stanley/nano-node-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 nano_node Write down the user and group (in this example, both the user and group is stanley) to the left of nano_node, this should be the same as your username
sudo touch /etc/systemd/system/nano_node.service
sudo chmod 664 /etc/systemd/system/nano_node.service
sudo nano /etc/systemd/system/nano_node.service
[Unit]
Description=RaiBlocks node service
After=network.target
[Service]
ExecStart=/home/stanley/nano-node-11.2.0-Linux/bin/nano_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 nano_node start
sudo systemctl enable nano_node
ln -s ~/nano-node-11.2.0-Linux/bin/nano_node /usr/local/sbin/nano_node
You should now have a brand new node up and running, and the blocks syncing.
nano_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