Quilibrium Node Runners Wiki
DiscordTelegram
  • ๐Ÿ‘‹Welcome
  • ๐Ÿš€Getting Started
    • ๐Ÿ–ฅ๏ธObtain a server
    • ๐Ÿ’พDeploy YAQAS
  • ๐Ÿ› ๏ธTools
    • ๐Ÿ”‘Backup your keys
    • ๐Ÿ’ธClaim rewards
    • โœ…Check your node
    • โคด๏ธUpdate your node
    • โ˜Ž๏ธTelegram notifications
    • ๐Ÿ”Reset store
  • ๐Ÿ‘พCLI Reference
  • โ”Frequently Asked Questions (FAQ)
  • ๐Ÿ”„Change Log
  • โ„น๏ธAbout
Powered by GitBook
On this page

CLI Reference

The commands below can be used to interact with your node. The commands are platform-agnostic, so there's no need to edit them according to your setup.

Start node

In order to start your node, execute the following command:

sudo service quil start

Your node will automatically start whenever your server boots or if there are any failures.

Stop node

In order to start your node, execute the following command:

sudo service quil stop

Logs

In order to view the logs of your node, execute the following command:

sudo journalctl -u quil -f

Peer-ID

In order to find the peer id of a running node, execute the following command:

($HOME/quil/node-*amd64 -peer-id 2>/dev/null || $HOME/quil/node-*arm64 -peer-id)

Node-Info

In order to get more statistics about a running node, execute the following command:

($HOME/quil/node-*amd64 -node-info 2>/dev/null || $HOME/quil/node-*arm64 -node-info)

Token Balance

($HOME/quil/node-*amd64 -balance 2>/dev/null || $HOME/quil/node-*arm64 -balance)
PreviousReset storeNextFrequently Asked Questions (FAQ)

Last updated 1 year ago

๐Ÿ‘พ