Node Management
Check logs
sudo journalctl -u firmachain -f -o catStart service
sudo systemctl start firmachainStop service
sudo systemctl stop firmachainRestart service
sudo systemctl restart firmachainCheck service status
sudo systemctl status firmachainReload services
sudo systemctl daemon-reloadEnable Service
sudo systemctl enable firmachainDisable Service
sudo systemctl disable firmachainSync info
firmachaind status 2>&1 | jq .SyncInfoNode info
firmachaind status 2>&1 | jq .NodeInfoLatest Block Info
curl -s localhost:16457/status | jq .result.sync_info.latest_block_heightYour node peer
echo $(firmachaind tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.firmachain/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')a
Last updated