⬆️OLD Updating your node
For upodating to 1.4.18 the update method will change, so avoid runnig the automated script below, and instead proceed with the manual method. You will still have to do some different steps than git fetch origin, so ask in the Telegram or Discord for guidance.
To update your node to 1.4.18, you can simply run this script
wget -O - https://raw.githubusercontent.com/0xOzgur/QuilibriumTools/main/update.sh | bash
If you prefer to update manually, proceed below.
Manually updating your node
Stop your node service
service ceremonyclient stop
Go to ceremonyclient folder
cd ~/ceremonyclient
Check whether some files are updated in the ceremonyclient git repo
git fetch origin
If there are files shown that are changed or different from your local copy, then run
git merge origin
Go to ceremonyclient/node folder
cd ~/ceremonyclient/node
Next, do a go clean
command to clear all previous build files. Run:
GOEXPERIMENT=arenas go clean -v -n -a ./...
Next, remove the compiled go binary file node
rm /root/go/bin/node
ls /root/go/bin
The ls
command should respond empty Next, make a new build compiled binary file node
, run:
GOEXPERIMENT=arenas go install ./...
Verify that the node
binary is built again
ls /root/go/bin
Response should show node
Start your node via the service command
service ceremonyclient start
Last updated