Tuesday, August 3, 2010
What does ESX stand for?
Thursday, July 8, 2010
Disaster recovery: Procedure in case of site failure
| 1. | Log into vCenter and verify whether or not storage is available for the cluster. If storage is unavailable, create an incident ticket for the storage group with priority urgent and with a request to: “Manually break the mirror for the “"Customer X" replicated storage group” used by ESXA and ESXB” The ticket should be followed by a phone call to the storage day/night duty to notify of the situation. | |
| 2. | When mirror has been broken, rescan remaining hosts in the cluster. This rescan can possibly time out. If this happens, reboot the hosts. After the rescan/reboot all shared LUNs will be missing on the hosts. These should be added/mounted manually from the console (step 3) (in ESX4u1 there's a bug in the add "storage" wizzard, so it doesn't work from the vSphere client, see this post for more info) | |
| 3. | Putty to each of the hosts and run the following commands: #esxcfg-volume –l This will list available volumes. For each volume, run the following command: #esxcfg-volume –M For example: #esxcfg-volume –M PSAM_REPL_001 See screendump below for ![]()
| |
| 4. | From the vSphere client, for each of the available hosts go to Configuration -> Storage and click “Refresh”. Verify that all LUNs appear as before the site failure | |
| 5. | Power on all VMs | |
| 6. | Done. In this situation, storage will run from the secondary site. The storage group will be able to reverse the replication seamlessly at a later stage when failed site is operational again. This does not require involvement from the VMware group. | |
Site redundancy with manual breaking of storage mirror
Thursday, May 20, 2010
My VMworld session ready for public voting
Sunday, April 18, 2010
Wednesday, March 31, 2010
Identifying your WWN id's via ILO
- ESX host name (FQDN)
- WWN id's of the HBA's
- If new LUN, then the size of the LUN. If you're zoning existing LUNs, then they need to know the storage group that the host should be added to (this can be done by providing hostname of one or two existing hosts that already have that zoning).
- Log into ILO either directly or via the blade enclosure
- Go to the Information tab of your server
- WWN id can be found under the info box for your HBA (see screendump below)

Monday, February 15, 2010
Howto: Installing VMware tools in a Linux VM
- install the guest OS (click here to see if guest OS is supported)
- to exit the gui to simulate no X server: sudo service gdm stop and then alt+f1 to get console
- right click the VM and choose install/update VMware tools. This will connect the cdrom with the VMware tools ISO file (if files are not already available, they will be downloaded) but you still need to mount the cdrom manually: sudo mount /dev/scd0 /media/cdrom (if folder don't exist, create it first)
- copy the tar file to /tmp folder and untar it: tar -xvf VMware-tools-vXX.tar.gz
- ls to the untar'ed folder and run vmware-install.pl: sudo ./vmware-install.pl
- start the gui: sudo service gdm start or simply startx
- verify that VMware tools are running: sudo ps -auxwww 'pipe-symbol' grep vm (look for /usr/bin/vmtoolsd and you will also find the balloon driver vmmemctl). You can also check if the vmtools startup script has been put into the startup folder /etc/rc0.d/
Update 2011.10.28: When installing VMware tools in Linux Redhat Enterprise 5.6 the installation failed as it needed gcc and some kernel developer packages. I ran the following commands and then reran the tools installation again after ./vmware-install.pl:
yum install gcc
yum install kernel-devel
yum install kernel-xen-devel
