Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 714 Bytes

README.md

File metadata and controls

30 lines (26 loc) · 714 Bytes

[SCRIPTS]

status.sh - Get all validator stats by IP address

chmod +x ./status.sh

Example:

./status.sh 255.255.255.0

fnnetcheck.sh - Validator node only. Check all connections from all containers and host

chmod +x ./fnnetcheck.sh
./fnnetcheck.sh > netcheck.log
# This will help to investigate if your node has issues with peers

mnnetcheck.sh - Sentry node. ^^

[COMMANDS]

Deleting snapshots

sudo -s
( find / -name *snap*.zip -type f -print0 && find / -name *testnet*.zip -type f -print0 ) 2>/dev/null | xargs -0 rm

Deleting snapshots alternative by @itgodeducation

sudo find / -type f \( -name '*snap*.zip' -o -name '*testnet*.zip' \) -delete