Node Management

Check logs

sudo journalctl -u qubetics -f -o cat

Start service

sudo systemctl start qubetics

Stop service

sudo systemctl stop qubetics

Restart service

sudo systemctl restart qubetics

Check service status

sudo systemctl status qubetics

Reload services

sudo systemctl daemon-reload

Enable Service

sudo systemctl enable qubetics

Disable Service

sudo systemctl disable qubetics

Sync info

qubeticsd status 2>&1 | jq .SyncInfo

Node info

qubeticsd status 2>&1 | jq .NodeInfo

Latest Block Info

curl -s localhost:32257/status | jq .result.sync_info.latest_block_height

Your node peer

echo $(qubeticsd tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.qubeticsd/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')

a

Last updated