Xahau Nodes
Forum rules
Welcome to the Hosting An Evernode Forum! To ensure a positive and productive environment, please adhere to the following guidelines.
Treat all members with respect and courtesy. Post content relevant to hosting an Evernode, avoiding spamming, self-promotion, or irrelevant topics. Aim to provide clear, informative, and constructive contributions. Discussions of illegal illicit activities are strictly prohibited. Protect your privacy and that of others by not sharing personal information publicly and reporting any suspicious activity to moderators. Failure to adhere to these rules may result in warnings, post deletions, or account suspension. Let’s work together to build a supportive and knowledgeable Evernode community!
Welcome to the Hosting An Evernode Forum! To ensure a positive and productive environment, please adhere to the following guidelines.
Treat all members with respect and courtesy. Post content relevant to hosting an Evernode, avoiding spamming, self-promotion, or irrelevant topics. Aim to provide clear, informative, and constructive contributions. Discussions of illegal illicit activities are strictly prohibited. Protect your privacy and that of others by not sharing personal information publicly and reporting any suspicious activity to moderators. Failure to adhere to these rules may result in warnings, post deletions, or account suspension. Let’s work together to build a supportive and knowledgeable Evernode community!
-
- Posts: 16
- Joined: Fri Jul 05, 2024 6:52 pm
Xahau Nodes
Use this topic for discussions related to running a Xahau Node
Re: Xahau Nodes
Update your Xahau Nodes:
wget -O update.sh https://gist.githubusercontent.com/WietseWind/9480a4fc95e904e54524406005c8c963/raw/49ec192b6cefa2670c5cb7f7994ba116f222a442/update.sh
EDIT FILE
nano update.sh
#Edit so that “update=“ is the target build. In this case: 2024.8.14-release+946
#EG: update=2024.8.14-release+946
MAKE FILE EXECUTABLE
chmod +x update.sh
RUN UPDATE
sudo ./update.sh
#WAIT FOR UPDATE TO COMPLETE (CLI WILL APPEAR)
VERIFY
xahaud server_info
#Look for “server_state” : “full”
#“server_state” : “Connected” is ok
Note: this is for directly installed Xahau instances.
wget -O update.sh https://gist.githubusercontent.com/WietseWind/9480a4fc95e904e54524406005c8c963/raw/49ec192b6cefa2670c5cb7f7994ba116f222a442/update.sh
EDIT FILE
nano update.sh
#Edit so that “update=“ is the target build. In this case: 2024.8.14-release+946
#EG: update=2024.8.14-release+946
MAKE FILE EXECUTABLE
chmod +x update.sh
RUN UPDATE
sudo ./update.sh
#WAIT FOR UPDATE TO COMPLETE (CLI WILL APPEAR)
VERIFY
xahaud server_info
#Look for “server_state” : “full”
#“server_state” : “Connected” is ok
Note: this is for directly installed Xahau instances.
-
- Posts: 4
- Joined: Fri Jul 12, 2024 8:52 pm
Re: Xahau Nodes
Hi, how do I edit a nano file update.sh where to insert and how to change and save the file update=2024.8.14-release+946 ?
-
- Posts: 12
- Joined: Wed Jul 31, 2024 5:59 pm
Re: Xahau Nodes
To edit, write "nano update.sh" and hit enter, (after first getting the file with the wget command), once you have done this you've opened the update.sh file with a text editor called nano.tristopitsot wrote: ↑Thu Aug 15, 2024 5:01 pm Hi, how do I edit a nano file update.sh where to insert and how to change and save the file update=2024.8.14-release+946 ?
After your changes, you can save by hitting CTRL + O and then Y for yes and enter, after that you can exit nano by hitting CTRL + X.
If you are unable to save/edit the file, then you need to open the file with the command "sudo nano update.sh" instead of just "nano update.sh".