🔄Upgrade

Upgrading Stargaze Node to Version v17.1.0

Upgrading your node ensures you have the latest features and security updates. Follow these steps to upgrade your Stargaze node to version v17.1.0:

Update instruction

  1. Fetch the Latest Changes from the Repository:

cd $HOME/stargaze
git fetch origin --tags
  1. Checkout the Desired Version:

Switch to version v17.1.0:

git checkout v17.1.0
  1. Build and Install the Updated Version:

Compile and install the updated Stargaze binary:

make install
  1. Verify the Installation:

Check the installed version to confirm the update:

starsd version --long | grep -e commit -e version

The output should display:

#version: 17.1.0
#commit: 089c00d811ef4c9db4d6f5e193b8ad11eaa6f12e
  1. Restart the Node:

Restart the Stargaze service to apply the changes:

  1. Monitor the Node Status:

Check the logs to ensure the node is running smoothly:

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 Guidearrow-up-right.

Last updated