You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- added --list to show available node versions
- added --version to install a particular node version
- made script more robust (file checks, command installs)
- updated tutorial with downgrade process
Bugs do occur, even with quality control involving strict testing. It may so happen that the newly released build is broken for a given architecture, or in a particular context. Check the official communication channels and team Discord for more information. If it turns out the problem really is with the newly released version, and the recommended solution is to return to the previous node version, installer script can help you in that situation too.
233
+
234
+
To see a list of available node versions for installation, run:
235
+
236
+
```bash
237
+
./avalanchego-installer.sh --list
238
+
```
239
+
It will print out a list, something like:
240
+
241
+
```text
242
+
AvalancheGo installer
243
+
---------------------
244
+
Available versions:
245
+
v1.3.2
246
+
v1.3.1
247
+
v1.3.0
248
+
v1.2.4-arm-fix
249
+
v1.2.4
250
+
v1.2.3-signed
251
+
v1.2.3
252
+
v1.2.2
253
+
v1.2.1
254
+
v1.2.0
255
+
```
256
+
257
+
Note the version you need to install to get the node to a known good configuration, and then run the installer with `--version` flag followed by the tag of the version you wish to install. For example:
258
+
259
+
```bash
260
+
./avalanchego-installer.sh --version v1.3.1
261
+
```
262
+
263
+
Command will start the upgrade process using the node version specified.
264
+
265
+
{% hint style="danger" %}
266
+
Do not downgrade your node version without explicit advice from the team to do so! Running an outdated version may lead to incompatibilities that may hinder your node and network performance, and may result in your node being banned by other nodes, potentially risking your staking rewards!
267
+
{% endhint %}
268
+
269
+
Thanks to community member [Jean Zundel](https://github.com/jzu) for motivation and script for node downgrade.
270
+
230
271
## What next?
231
272
232
273
That's it, you're running an AvalancheGo node! Congratulations! Let us know you did it on our [Twitter](https://twitter.com/avalancheavax), [Telegram](https://t.me/avalancheavax) or [Reddit](https://t.me/avalancheavax)!
0 commit comments