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