-
1. Re: Taking one SAN down. Do ESX hosts need to be down?
esxrocks Mar 2, 2007 3:37 PM (in response to Jae Ellers)You may be able to get away with just powering off the VMs.
You will more than likely need to rescan the SAN a couple of times and/or reboot the host.
Why is it an issue to power off the host during this maintenance?
Message was edited by:
BrianG
-
2. Re: Taking one SAN down. Do ESX hosts need to be down?
Jae Ellers Mar 2, 2007 3:54 PM (in response to esxrocks)there are 4 hosts & 52 other vms in the cluster. All hosts currently have this lun presented from the new san that must go down.
-
3. Re: Taking one SAN down. Do ESX hosts need to be down?
dblake15 Mar 2, 2007 4:05 PM (in response to Jae Ellers)1 person found this helpfulYou can also just suspend the guests and not take them down. Here is a script you can use
vmware-cmd -l | awk '\{cfg = $_} {command = "vmware-cmd \"" $cfg "\" suspend hard"} \{print cfg} \{system(command)}'
Just ssh and run that on the host. Copy and paste since it is pretty long. I have done this many times when doing any SAN maintenance.
-
4. Re: Taking one SAN down. Do ESX hosts need to be down?
Jae Ellers Mar 2, 2007 4:09 PM (in response to dblake15)True, but I'm a little paranoid taking suspending MS SMS servers for a while since when they wakeup they'll have to catch up with their time and all the SMS backlog.
We have to move the 1000# san up onto an earthquake platform. This could be a couple hours.
Message was edited by:
Jae Ellers
-
5. Re: Taking one SAN down. Do ESX hosts need to be down?
dblake15 Mar 2, 2007 4:15 PM (in response to Jae Ellers)Well if you are worried about that then it would not be a problem to just shut the guests down. Also, that little script I gave you does all of the guests on the host. So something good if you have to do quick maintenance on a host, like replace fiber cables or moving SAN. Much easier than clicking them all one at a time. Keep it for your records.