> For the complete documentation index, see [llms.txt](https://cotidocs.geordier.co.uk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cotidocs.geordier.co.uk/installing-the-node/finally-checking-youre-up.md).

# 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.

{% tabs %}
{% tab title="Checking on Testnet" %}
Check you're up by logging into[ https://pay.coti.io/testnet ](< https://pay.coti.io/testnet >)and find your node in the drop down node list once you're past the username and password section.
{% endtab %}

{% tab title="Checking on Mainnet" %}
Check you're up by logging into <https://pay.coti.io/> and find your node in the drop down node list once you're past the username and password section.
{% endtab %}
{% endtabs %}

{% hint style="info" %}
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>

{% endhint %}

### 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
```
