Back

Ok, so we have a data center power outage for some electrical maintenance work sunday 8/26 2am-9am.

How to shut down the cluster? Here are the steps i took.

Cluster Power Down

#!/bin/bash

# all compute nodes on IPMI subnet
for i in `seq 218 253`
do

# CAREFUL, OPTIONS ARE: status, on or off
echo 192.168.2.${i}
ipmitool -H 192.168.2.${i} -U XXXXXX -P YYYYYY chassis power off

done

Technically, the cluster still has power but the filers providing the file systems do not. Hence the power down. But in this case UPS, switches and MD1000s can stay powered up. In a complete power outage, turn all these devices off last.

Cluster Power Up