Backend reinstalls

We are putting this here because it is a common task especially when getting your configuration correct.

There are several reasons to reinstall a backend node.

Reinstall to refresh

# stack set host boot a:backend action=install

# stack run host command="reboot"

Reinstall to start over

Do this if:

# stack set host boot a:backend action=install
# stack set host attr a:backend attr=nukedisks value=True

If you have controller config you also are redoing:

# stack set host attr a:backend attr=nukecontroller value=True

Check it:

# stack list host boot
HOST         ACTION  NUKEDISKS NUKECONTROLLER
frontend-0-0 ------- False     False
backend-0-0  install True      True
backend-0-1  install True      True
backend-0-2  install True      True
backend-0-3  install True      True
backend-0-4  install True      True

Reboot:

# stack run host command="reboot"

Or power-cycle with your magic power-cycle scripts. (I have those, doesn’t everybody have those?)

Or go push the buttons.


Edited by: Chris Ladd on Mon Oct 7 14:15:35 2019 -0700
Commit: 7366734