Finally: Checking you're up!

If you successfully installed the node you will be on the lookout for this message

COTI FULL NODE IS UP

If you see the message above, use the tabs below to check for your node on mainnet or testnet.

Check you're up by logging into https://pay.coti.io/testnet and find your node in the drop down node list once you're past the username and password section.

If you are an exchange only: be sure to head back to the exchange page and run the keys section now to record your mnemonics, seed and private key then delete the keys file.

https://geordier.gitbook.io/geordie-docs/exchange-nodes/installing-an-exchange-node#recording-your-keys-then-deleting-the-keys-file

What happens if I reboot

The node is currently running under a systemd service so if you reboot the service will automatically start. We would recommend you stop the service before rebooting of course. You can see the configuration for this service if you wish:

nano /etc/systemd/system/cnode.service

Start/Stop

To stop or start the service use a variation of this command replacing start with stop

systemctl start cnode.service

Viewing the log

If you want to view the log you can use the following command. If you have used a user other than coti, please replace the first mention of coti in the command below with your username. If you just want to see the end of the log replace nano with tail -f

 nano /home/coti/coti-node/logs/FullNode1.log

Uninstalling

If you make a mistake and want to uninstall and try the installation again, here is the code to uninstall.

rm -rf uninstallfullnode.sh
wget -O uninstallfullnode.sh https://raw.githubusercontent.com/Geordie-R/coti-full-node/main/uninstallfullnode.sh
chmod +x uninstallfullnode.sh
./uninstallfullnode.sh

Last updated