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