Update Dingo Node
How to update your Dingo Node
Section titled “How to update your Dingo Node”Step 1 - Download latest release
Section titled “Step 1 - Download latest release”Download the latest release from the Dingo releases page.
⚠️ Adjust the version and architecture to match your system.
cd ~/dingowget https://github.com/blinklabs-io/dingo/releases/download/v0.55.0/dingo-v0.55.0-linux-amd64.tar.gz -O - | tar -xzStep 2 - Stop Dingo Node
Section titled “Step 2 - Stop Dingo Node”sudo systemctl stop dingoStep 3 - Copy Dingo node to /usr/local/bin/
Section titled “Step 3 - Copy Dingo node to /usr/local/bin/”sudo cp ~/dingo/dingo /usr/local/bin/Verify it has been copied by which dingo
Step 4 - Check for Config file updates
Section titled “Step 4 - Check for Config file updates”Check to make sure no config updates are required.
Refer to the Dingo Release notes and the Quick Start guide.
💡 To view and edit
dingo.yamlfile run:sudo nano /etc/dingo/dingo.yaml⚠️ Adjust path as needed
Step 5 - Start Dingo Node
Section titled “Step 5 - Start Dingo Node”sudo systemctl start dingoCheck Version is updated:
dingo versionStep 6 - Check Status
Section titled “Step 6 - Check Status”Verify the service is running:
sudo systemctl status dingo.serviceTo folow the logs in real time:
sudo journalctl -u dingo -fTo see recent logs if there is an error:
sudo journalctl -u dingo -n 50 --no-pager