Skip to content

Commit 15684ec

Browse files
committed
added downgrade capability to installer script
- 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
1 parent 23e4852 commit 15684ec

File tree

2 files changed

+104
-13
lines changed

2 files changed

+104
-13
lines changed

build/tutorials/nodes-and-staking/set-up-node-with-installer.md

+48-7
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ So, now that you prepared your system and have the info ready, let's get to it.
5959

6060
To download and run the script, enter the following in the terminal:
6161

62-
```text
62+
```bash
6363
wget -nd -m https://raw.githubusercontent.com/ava-labs/avalanche-docs/master/scripts/avalanchego-installer.sh;\
6464
chmod 755 avalanchego-installer.sh;\
6565
./avalanchego-installer.sh
@@ -125,7 +125,7 @@ The script is finished, and you should see the system prompt again.
125125

126126
AvalancheGo should be running in the background as a service. You can check that it's running with:
127127

128-
```text
128+
```bash
129129
sudo systemctl status avalanchego
130130
```
131131

@@ -157,7 +157,7 @@ Note the `active (running)` which indicates the service is running ok. You may n
157157

158158
To find out your NodeID, which is used to identify your node to the network, run the following command:
159159

160-
```text
160+
```bash
161161
sudo journalctl -u avalanchego | grep "node's ID"
162162
```
163163

@@ -171,7 +171,7 @@ Prepend `NodeID-` to the value to get, for example, `NodeID-6seStrauyCnVV7NEVwRb
171171

172172
Your node should be in the process of bootstrapping now. You can monitor the progress by issuing the following command:
173173

174-
```text
174+
```bash
175175
sudo journalctl -u avalanchego -f
176176
```
177177

@@ -181,13 +181,13 @@ Press `ctrl+C` when you wish to stop reading node output.
181181

182182
To stop AvalancheGo, run:
183183

184-
```text
184+
```bash
185185
sudo systemctl stop avalanchego
186186
```
187187

188188
To start it again, run:
189189

190-
```text
190+
```bash
191191
sudo systemctl start avalanchego
192192
```
193193

@@ -203,7 +203,7 @@ It is recommended to always upgrade to the latest version, because new versions
203203

204204
To upgrade your node, just run the installer script again:
205205

206-
```text
206+
```bash
207207
./avalanchego-installer.sh
208208
```
209209

@@ -227,6 +227,47 @@ avalanche/1.1.1 [network=mainnet, database=v1.0.0, commit=f76f1fd5f99736cf468413
227227
Done!
228228
```
229229

230+
## Downgrade to a previous version
231+
232+
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+
230271
## What next?
231272

232273
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)!

scripts/avalanchego-installer.sh

+56-6
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,69 @@ create_service_file () {
2727
echo "">>avalanchego.service
2828
}
2929

30-
#helper function to check for presence of curl, and install if missing
31-
check_curl() {
30+
#helper function to check for presence of required commands, and install if missing
31+
check_reqs () {
3232
if ! command -v curl &> /dev/null
3333
then
3434
echo "curl could not be found, will install..."
3535
sudo apt-get install curl -y
3636
fi
37+
if ! command -v wget &> /dev/null
38+
then
39+
echo "wget could not be found, will install..."
40+
sudo apt-get install wget -y
41+
fi
42+
if ! command -v dig &> /dev/null
43+
then
44+
echo "dig could not be found, will install..."
45+
sudo apt-get install dnsutils -y
46+
fi
47+
}
48+
49+
#helper function that prints usage
50+
usage () {
51+
echo "Usage: $0 [--list] [--version <tag>] [--help]"
52+
echo ""
53+
echo "Options:"
54+
echo " --help Shows this message"
55+
echo " --list Lists 10 newest versions available to install"
56+
echo " --version <tag> Installs <tag> version"
57+
echo ""
58+
echo "Ran without any options, script will install or upgrade AvalancheGo to latest available version."
59+
echo ""
60+
exit 0
3761
}
3862

3963
echo "AvalancheGo installer"
4064
echo "---------------------"
65+
66+
if [ $# -ne 0 ] #arguments check
67+
then
68+
case $1 in
69+
--list) #print version list and exit (last 10 versions)
70+
echo "Available versions:"
71+
wget -q -O - https://api.github.com/repos/ava-labs/avalanchego/releases \
72+
| grep tag_name \
73+
| sed 's/.*: "\(.*\)".*/\1/' \
74+
| head
75+
exit 0
76+
;;
77+
--version) #explicit version selection
78+
if [ $# -eq 2 ]
79+
then
80+
version=$2
81+
else
82+
usage
83+
fi
84+
;;
85+
*)
86+
usage
87+
;;
88+
esac
89+
fi
90+
4191
echo "Preparing environment..."
92+
check_reqs
4293
foundIP="$(dig +short myip.opendns.com @resolver1.opendns.com)"
4394
foundArch="$(uname -m)" #get system architecture
4495
foundOS="$(uname)" #get OS
@@ -60,7 +111,6 @@ else
60111
echo "Exiting."
61112
exit
62113
fi
63-
check_curl
64114
if test -f "/etc/systemd/system/avalanchego.service"; then
65115
foundAvalancheGo=true
66116
echo "Found AvalancheGo systemd service already installed, switching to upgrade mode."
@@ -74,16 +124,16 @@ mkdir -p /tmp/avalanchego-install #make a directory to work in
74124
rm -rf /tmp/avalanchego-install/* #clean up in case previous install didn't
75125
cd /tmp/avalanchego-install
76126

77-
read -p "Press enter to install the latest AvalancheGo version, or specify the version to install (e.g. v1.2.3): " version
78127
version=${version:-latest}
79128
echo "Looking for $getArch version $version..."
80129
if [ "$version" = "latest" ]; then
81130
fileName="$(curl -s https://api.github.com/repos/ava-labs/avalanchego/releases/latest | grep "avalanchego-linux-$getArch.*tar\(.gz\)*\"" | cut -d : -f 2,3 | tr -d \" | cut -d , -f 2)"
82131
else
83132
fileName="https://github.com/ava-labs/avalanchego/releases/download/$version/avalanchego-linux-$getArch-$version.tar.gz"
84133
fi
85-
86-
if [ "$fileName" = "" ]; then
134+
if [[ `wget -S --spider $fileName 2>&1 | grep 'HTTP/1.1 200 OK'` ]]; then
135+
echo "Node version found."
136+
else
87137
echo "Unable to find AvalancheGo version $version. Exiting."
88138
if [ "$foundAvalancheGo" = "true" ]; then
89139
echo "Restarting service..."

0 commit comments

Comments
 (0)