> For the complete documentation index, see [llms.txt](https://service.block-pro.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://service.block-pro.net/testnet/celestia/full-node/useful-commands.md).

# Useful commands

#### **Check full node wallet balance**

```
celestia state balance --node.store ~/.celestia-full-mocha-4/
```

#### **Get wallet address**

```
cd $HOME/celestia-node
./cel-key list --node.type full --keyring-backend test  --p2p.network mocha
```

#### **Restore an existing cel\_key**

```
KEY_NAME="my_celes_key"
cd ~/celestia-node
./cel-key add $KEY_NAME --keyring-backend test --node.type full  --recover --p2p.network mocha
```

#### **Check Full node status**

```
celestia header sync-state --node.store ~/.celestia-full-mocha-4/
```

#### **Get Node ID**

```
celestia p2p info --node.store ~/.celestia-full-mocha-4/
```

#### **(Optional) Add permissions for transferring keys to another server**

```
chmod -R 700 ~/.celestia-full-mocha-4
```

#### **Reset node**

```
celestia full unsafe-reset-store --p2p.network mocha
```

#### Delete Full Storage node

```
sudo systemctl stop celestia-full
sudo systemctl disable celestia-full
sudo rm /etc/systemd/system/celestia-full*
rm -rf $HOME/celestia-node $HOME/.celestia-app $HOME/.celestia-full-mocha-4
```
