> For the complete documentation index, see [llms.txt](https://services.validexis.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://services.validexis.com/mainnets/celestia/light-node-installation/useful-commands.md).

# 📜  Useful Commands

***Check Light node wallet balance***

```bash
celestia state balance --node.store ~/.celestia-light/
```

***Get wallet address***

```bash
cd $HOME/celestia-node
./cel-key list --node.type light --keyring-backend test
```

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

```bash
KEY_NAME="my_celes_key"
cd ~/celestia-node
./cel-key add $KEY_NAME --keyring-backend test --node.type light  --recover
```

***Check light node status***

```bash
celestia header sync-state --node.store ~/.celestia-light/
```

***Get Node ID***

```bash
celestia p2p info --node.store ~/.celestia-light/
```

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

```bash
chmod -R 700 ~/.celestia-light
```

***Reset node***

```bash
celestia light unsafe-reset-store
```

### *Delete light node* <a href="#delete" id="delete"></a>

```bash
sudo systemctl stop celestia-light
sudo systemctl disable celestia-light
sudo rm /etc/systemd/system/celestia-light*
rm -rf $HOME/celestia-node $HOME/.celestia-light
```
