Validator restart

How to stop, start, and verify your X1 validator.

Stop

tachyon-validator exit -f

Verify Stopped

ps aux | grep tachyon-validator | grep -v grep

No output = stopped.

Start

nohup ~/bin/validator.sh &

Verify

ps aux | grep tachyon-validator | grep -v grep
tail -f ~/validator.log
solana catchup <YOUR_IDENTITY> --our-localhost

Last updated