🔄Upgrade
Upgrading Stargaze Node to Version v16.0.0
Upgrading your node ensures you have the latest features and security updates. Follow these steps to upgrade your Stargaze node to version v16.0.0:
Update instruction
Fetch the Latest Changes from the Repository:
cd $HOME/stargaze
git fetch origin --tags
Checkout the Desired Version:
Switch to version v16.0.0:
git checkout v16.0.0
Build and Install the Updated Version:
Compile and install the updated Stargaze binary:
make install
Verify the Installation:
Check the installed version to confirm the update:
starsd version --long | grep -e commit -e version
The output should display:
#version: 16.0.0
#commit: 08a5ac1e53ba4935cb45c5390e9f23abf60654c8
Restart the Node:
Restart the Stargaze service to apply the changes:
sudo systemctl restart starsd
Monitor the Node Status:
Check the logs to ensure the node is running smoothly:
sudo journalctl -fu starsd -o cat
Important Note: Before performing any upgrade, it's recommended to back up your data and ensure you have console access to your server in case of issues.
For more detailed information, refer to the Stargaze Node Installation Guide.
Last updated