Axone — Useful Commands
SystemD Operations
Reload systemd manager configuration
sudo systemctl daemon-reload
copied = false, 3000);
"
class="absolute top-2 right-3 flex items-center space-x-1 text-black hover:text-[#FFA14F] transition-colors"
>
copied
Enable service at boot
sudo systemctl enable axoned
copied = false, 3000);
"
class="absolute top-2 right-3 flex items-center space-x-1 text-black hover:text-[#FFA14F] transition-colors"
>
copied
Start node service
sudo systemctl start axoned
copied = false, 3000);
"
class="absolute top-2 right-3 flex items-center space-x-1 text-black hover:text-[#FFA14F] transition-colors"
>
copied
Restart node service
sudo systemctl restart axoned
copied = false, 3000);
"
class="absolute top-2 right-3 flex items-center space-x-1 text-black hover:text-[#FFA14F] transition-colors"
>
copied
Stop node service
sudo systemctl stop axoned
copied = false, 3000);
"
class="absolute top-2 right-3 flex items-center space-x-1 text-black hover:text-[#FFA14F] transition-colors"
>
copied
Check node service status
sudo systemctl status axoned
copied = false, 3000);
"
class="absolute top-2 right-3 flex items-center space-x-1 text-black hover:text-[#FFA14F] transition-colors"
>
copied
View live logs
sudo journalctl -u axoned -f --no-hostname -o cat
copied = false, 3000);
"
class="absolute top-2 right-3 flex items-center space-x-1 text-black hover:text-[#FFA14F] transition-colors"
>
copied
Node Information
Sync info
axoned status 2>&1 | jq .SyncInfo
copied = false, 3000);
"
class="absolute top-2 right-3 flex items-center space-x-1 text-black hover:text-[#FFA14F] transition-colors"
>
copied
Node info
axoned status 2>&1 | jq .NodeInfo
copied = false, 3000);
"
class="absolute top-2 right-3 flex items-center space-x-1 text-black hover:text-[#FFA14F] transition-colors"
>
copied
Node ID
axoned tendermint show-node-id
copied = false, 3000);
"
class="absolute top-2 right-3 flex items-center space-x-1 text-black hover:text-[#FFA14F] transition-colors"
>
copied
Validator details
axoned tendermint show-validator
copied = false, 3000);
"
class="absolute top-2 right-3 flex items-center space-x-1 text-black hover:text-[#FFA14F] transition-colors"
>
copied
Get full peer string
echo $(axoned tendermint show-node-id)'@'$(curl -s ifconfig.me)':'$(cat $HOME/.axoned/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
copied = false, 3000);
"
class="absolute top-2 right-3 flex items-center space-x-1 text-black hover:text-[#FFA14F] transition-colors"
>
copied