Skip to content

s4njk4n/StorX_Multinode_Tools

Repository files navigation

StorX_Multinode_Tools

Tools for managing multiple StorX nodes

As per StorX, it is important to ensure that both the server OS and the StorX software are up to date on StorX nodes.

In the event that nodes are not up to date, specific nodes may have their Reputation decreased. Reputation must be maintained above 10 in order to continue being a Staker.

Keeping all nodes up to date takes time, especially if you have multiple nodes and are dealing with them all one-by-one. These scripts are designed to automate and streamline the process so we can manage larger groups of nodes in an easier and more time-efficient manner.

These tools have been created for the use of myself and a few others. If you plan to use them, please take some time to read through the scripts and understand them.

Also, please do not be afraid of any jargon. The process of using the scripts will be shown below clearly (hopefully).


WHAT THE SCRIPTS DO

set_StorX_SSH_auth.sh

This script streamlines the process of setting up SSH key-based authentication. VPS IP addresses are read from the "ip_addresses" text file that you will setup below. Managing multiple nodes is MUCH easier when using SSH keys to access each VPS. We need SSH key-based authentication set up in order to use the actual "updating" scripts we're going to use.

update_StorX_node_manual.sh

This script updates only ONE node each time you run it. It will ask you at the beginning to enter the IP address of the VPS it should update. Having SSH key-based authentication already setup in order to run this script is helpful but not essential. Node reputation will be reset to 27 (as of time of writing this).

update_StorX_node_auto.sh

This script sequentially updates EVERY node that has its IP address in the "ip_addresses" text file that you will setup below. SSH key-based authentication needs to be already setup in order for this script to be useful. Node reputations will be reset to 27 (as of time of writing this).

update_StorX_OSonly_and_reboot_auto.sh

This script sequqentially updates ONLY THE OPERATING SYSTEM on EVERY node that has its IP address in the "ip_addresses" text file that you will setup below. After updating the OS, it then reboots the VPS and finally does a "getstatus" so the user can see that the StorX node on that VPS is back online and connected to the StorX network post the update and reboot. It then moves on to the next VPS and performs the same procedure. SSH key-based authentication needs to be already setup in order for this script to be useful. Node reputation remains UNCHANGED with this script (as per testing findings so far).

check_StorX_node_statuses.sh

This script will sequentially check and display the status of EVERY node that has its IP address in the "ip_addresses" text file that you will setup below. SSH key-based authentication needs to be already setup in order for this script to be useful. Once finished running, you can scroll up and down in your terminal window to see the current status that each node is showing.


ITEMS TO NOTE

  • You will need a computer (running Ubuntu 20.04) that these scripts will be installed on (eg. laptop, desktop, virtual machine, VPS). If you are using the Plugin Multinode Tools as well, then these scripts can all be installed on the same computer.
  • If you install them on a VPS, please ensure that the VPS host allows outgoing ssh (ie that outgoing connections on port 22 are allowed). Some VPS providers block outgoing ssh initially and you have to then specifically unblock it in their control panel.
  • The computer you setup for these updates should be one YOU control and only YOU have access to. Using SSH key-based authentication means that this administration computer can connect to your nodes whenever it needs to without needing you to manually enter the password for the node VPS. This is by design and is how the scripts manage to run multiple commands to update each node whilst remaining unattended. As you can see, this computer must not be a random public computer. It must be your computer that you control with your own passwords.

INITIAL SETUP

  1. Logon to (or access the terminal on) the computer you will be using for administering your StorX nodes. You will need to be at the command prompt in the terminal in order to perform the following steps.

  2. Update the system and install base packages. (Note: You need to run a sudo command of any type before doing Step 3 below or you will find that the Step 3 process will exit early before cloning the git repo to your local drive. Doesn't really matter which command you sudo. The simplest and most useful sudo command to run is a quick update of the OS and ensuring the base packages you will need are installed. You can do this by running the command shown here in Step 2):

    sudo apt update -y && sudo apt upgrade -y && sudo apt install -y git ssh && sudo apt autoremove -y
  1. Clone the scripts repository (Note: Preserves any preexisting ip_addresses file in local git repo. All other files will in your local repo directory will be deleted and the current repo will then be downloaded):
    cd $HOME
    mv StorX_Multinode_Tools/ip_addresses . > /dev/null 2>&1
    sudo rm -r StorX_Multinode_Tools > /dev/null 2>&1
    git clone https://github.com/s4njk4n/StorX_Multinode_Tools.git
    cd StorX_Multinode_Tools
    mv ~/ip_addresses . > /dev/null 2>&1
    chmod +x *.sh
  1. Make sure to press ENTER after pasting the above code into the terminal

CUSTOMISE THE "ip_addresses" FILE

  1. Open the "ip_addresses" file in nano:
    nano ~/StorX_Multinode_Tools/ip_addresses
  1. On EACH LINE enter the IP address of only ONE of the nodes you wish to be accessed by the update scripts. There should be NO SPACES before the ip address on any line. (The first character of each line should be the first digit of the ip address you are putting on that line). Press ENTER at the end of each line after you finishing entering the last digit of the IP address. The exception to this is that when you have entered your FINAL IP address you will NOT press ENTER to create a new line at the end of the file.

  2. Once all the node IP addresses have been entered, we need to exit nano and save the file:

    Press "CTRL+X" 
    Press "y"
    Press "ENTER"

SETUP SSH KEY-BASED AUTHENTICATION

(Note: You must have setup the "ip_addresses" file in the above section first)

GENERATE SSH-KEYS

If you have already generated SSH keys earlier (if you're also using and have already installed the Plugin Multinode Tools for example), please skip this key-generation step and proceed directly to the next section below with the heading "Register SSH Keys On Nodes"

  1. Create your SSH keys that will be used for authentication:
    ssh-keygen
  1. You will then be asked several questions to generate the key. Just keep pressing ENTER to accept the default responses. When finished, you'll arrive back at your normal command prompt.
REGISTER SSH-KEYS ON NODES
  1. Run the set_StorX_SSH_auth.sh script:
    cd ~/StorX_Multinode_Tools && ./set_StorX_SSH_auth.sh
  1. If this is the first time you are accessing a specific node from your current computer, then when the script tries to access that specific node you will receive a message asking you "Are you sure you want to continue connecting". Type yes and press ENTER each time.

  2. For each node you will also receive a request to enter the password (for the node indicated by the ip address shown in the prompt). Put in your password for that node and press ENTER.

  3. By doing the above steps the script will sequentially access each node and copy your SSH credentials to it.


TO UPDATE ALL YOUR NODES

  1. First you need to know how long it takes for your SLOWEST node to reboot. For example, if most of your nodes at one provider can reboot in 10sec, but you have some nodes at another provider that take 3min to reboot, then you need to know this rough figure as you will be asked for it when you run the update script.

  2. Run the update script:

    cd ~/StorX_Multinode_Tools && ./update_StorX_node_auto.sh
  1. You will be prompted to enter how long the script should wait to allow for your nodes to reboot. If you enter a time that is too short, then the update process will fail. If you enter a time that is longer than the time it takes your node VPS to reboot, this is no major problem as it will just mean that the update process will just take a little longer. The time you enter should just be the number of seconds to wait. For example, to wait 60sec, one would just type 60 and press ENTER. Be aware that some commercial VPS providers have reboot times that are VERY SLOOOOOOW. If you're not sure how long it takes for yours or if you want to be on the safe side then just pick something long like 300 seconds (ie. type 300 and press ENTER)

  2. Now sit back and wait. Feel free to watch the script work or go away and do something else until it is finished. Alternately if you have some ridiculous number of nodes (Yes I am talking to YOU haha) then go away and leave your computer on for a few days to update all of the nodes. Note that while the script is running, there are several parts where it may look like nothing is happening for even a few minutes. This is often when the script is just waiting for a response from the VPS or from the software/StorX-network etc. Be patient and it should move on.


TO UPDATE A SPECIFIC NODE

  1. First you need to know roughly how long it takes to reboot the node you want to update. The script will ask you how many seconds to allow for the node to complete rebooting (It gets rebooted as part of the update process).

  2. Run the update script for single nodes:

    cd ~/StorX_Multinode_Tools && ./update_StorX_node_manual.sh
  1. When asked, enter the IP address of the node you wish to update and press ENTER.

  2. You will be prompted to enter how long the script should wait to allow for your node to reboot. If you enter a time that is too short, then the update process will fail. If you enter a time that is longer than the time it takes your node VPS to reboot, this is no major problem as it will just mean that the update process will just take a little longer. The time you enter should just be the number of seconds to wait. For example, to wait 60sec, one would just type 60 and press ENTER. Be aware that some commercial VPS providers have reboot times that are VERY SLOOOOOOW. If you're not sure how long it takes for yours or if you want to be on the safe side then just pick something long like 300 seconds (ie. type 300 and press ENTER)

  3. Now sit back and wait. Feel free to watch the script work or go away and do something else until it is finished. Note that while the script is running, there are several parts where it may look like nothing is happening for even a few minutes. This is often when the script is just waiting for a response from the VPS or from the software/StorX-network etc. Be patient and it should move on.


TO UPDATE ONLY THE OPERATING SYSTEM AND THEN REBOOT ALL YOUR VPS's

  1. First you need to know roughly how long it takes to reboot the node you want to update. The script will ask you how many seconds to allow for the node to complete rebooting (It gets rebooted as part of the update process).

  2. Run the OS-updating script:

    cd ~/StorX_Multinode_Tools && ./update_StorX_OSonly_and_reboot_auto.sh
  1. You will be prompted to enter how long the script should wait to allow for your nodes to reboot. If you enter a time that is too short, then the update process will fail. If you enter a time that is longer than the time it takes your node VPS to reboot, this is no major problem as it will just mean that the update process will just take a little longer. The time you enter should just be the number of seconds to wait. For example, to wait 60sec, one would just type 60 and press ENTER. Be aware that some commercial VPS providers have reboot times that are VERY SLOOOOOOW. If you're not sure how long it takes for yours or if you want to be on the safe side then just pick something long like 300 seconds (ie. type 300 and press ENTER)

  2. All of your VPS's that have their IP addresses listed in the "ip_addresses" file will now sequentially have their operating system updated followed by a system reboot and then a status check to show the node is online and connected to the StorX network.


TO CHECK THE STATUS OF ALL YOUR NODES

  1. This script will query and show the status of every node with an IP address listed in the "ip_addresses" file you setup earlier above. If not done yet, you will need to setup the "ip_addresses" file as per the instructions above first.

  2. Run the script to check your nodes:

    cd ~/StorX_Multinode_Tools && ./check_StorX_node_statuses.sh
  1. Watch while the status of each node is shown sequentially in your terminal window, or alternately go away and come back later when it is finished. You will be able to scroll back up the terminal window later to review them all if there are too many to watch while they are checked one-by-one.

About

Tools for managing multiple StorX nodes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages