Quilibrium.one
SocialOfficial
Quilibrium Node Guide
Quilibrium Node Guide
  • 🖖Introduction
  • ✅Safety checks
  • đŸ“ŖAnnouncements
  • 🔗Links & Info
  • đŸ’ģBest server providers
  • đŸ’ģHardware requirements
  • 😎Q1 - Node Manager
  • ⚡Node Auto-installer
  • âŦ†ī¸Updating your node
  • âœ”ī¸Check your node info
  • 🔑Backup your private keys
  • đŸ“ĻBackup your node
  • 🔁Set up the gRPC calls
  • đŸ› ī¸Tools and scripts
  • 🔧Extra tools
  • 🔠Useful commands
  • â‰ī¸Troubleshooting
  • 📌Tutorials
    • Node
      • đŸ”ĸNode step by step installation
      • đŸŗInstalling the node on Docker
      • đŸĒŸInstalling the node and the qclient on Windows WSL
      • â†—ī¸Migrating the node to a new server
      • â„šī¸Running the node via binary file
      • Running a node cluster
      • ✅Reinstalling the node from scratch
      • âš™ī¸Managing your system resources
        • â˜‘ī¸Limiting your vCores usage
        • â˜‘ī¸Limiting your CPU usage
        • â˜‘ī¸Limiting the RAM assigned to each vCore
      • 🔄Switching from tmux to service
      • 💲Log your node balance every 1 hour
      • 🩷Escaping the "Pink Screen of Death"
      • 🔒Set up SSH keys
      • 🔒Creating a root login access
      • 👀Renting Servers Unveiled: Exploring Types and Processor Terminology
    • Qclient
      • Qclient commands
      • How to transfer QUIL
      • How to Bridge QUIL to WQUIL
      • How to retrieve your coin address after a failed bridging operation
  • 📂Archive
    • ⚡OLD - Node Auto-installer
    • đŸ”ĸOLD - Node step by step installation
    • 🔠OLD - Useful server commands
    • â‰ī¸OLD Troubleshooting
    • âŦ†ī¸OLD Updating your node
    • ⚡Importing an existing store folder for fast sync
    • â˜‘ī¸Changing the cpulimit value in release_autorun
  • âš ī¸Work in progress
  • 💜Want to say thank you?
Powered by GitBook
On this page
  1. Archive

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
PreviousOLD TroubleshootingNextImporting an existing store folder for fast sync

Last updated 11 months ago

📂
âŦ†ī¸