Last active
March 5, 2024 14:03
-
-
Save danimbrogno/b55917f54063c32a63fbb11bd3f5b48a to your computer and use it in GitHub Desktop.
Quilibrium Convenience Scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# Launch node monitoring. | |
# Remember to `chmod u+x` then run ./monitor.sh | |
sudo journalctl -u ceremonyclient.service -f --no-hostname -o cat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# Update quilibrium node | |
# Remember to `chmod u+x` then run ./update.sh | |
service ceremonyclient stop | |
cd ~/ceremonyclient | |
git fetch origin | |
git merge origin | |
cd ~/ceremonyclient/node | |
GOEXPERIMENT=arenas go clean -v -n -a ./... | |
rm /root/go/bin/node | |
GOEXPERIMENT=arenas go install ./... | |
service ceremonyclient start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment