Saturday, October 16, 2010

How to remove a Virtual Center Server from Liked Mode

No option is available to remove a Virtual Center Server from a Linked Mode VC. You must run the VC setup again in order to remove the VC Server from linked mode.
1. Run Virtual Center setup.exe
2. Choose Modify Linked Mode configuration
3. Make sure that the Isolate this VCenter Server instance from linked mode group is checked off before slecting Next
Be Patient this can take a while...
You also will lose conncetivity to VCenter during this process and you will need to restart the VI client.

Sunday, September 26, 2010

Installing VMtools on a Novell Sever VM

Power on the Novell Server VM
Select VM and then select Install VMware Tools
Open a console session on the Novell VM Server
Close the Novell GUI if it is running 
From the Novell Server : Prompt
: Load CDDVD
: vmwtools:\setup.ncf
Once the VMtools install has completed you can End the VMware Tools Install
Done!

Tuesday, July 20, 2010

Cannot log into VI client- "The server could not interpret the communication from the client. (The remote server returned an error: (503) Server Unavailable)".

Here's a good one. I created a 2 ESX Server "Sandbox environment" for my lab testing with 1 Windows 2008 VM providing DNS to the test servers. The idea was to use the 2 ESX servers with a Dell EqualLogic iSCSI SAN to test replication and failover from the prodcution tot the DR site of the Windows 2008 server. I ran into some trouble when I rebooted the ESX severs I could not log back in to either of the ESX servers with the VI client. I came accross this article below which helped me out tremendously and put an end to this madness. I know that normally this would not be a problem since a DNS server would be up and running at both the production and DR sites however, in my sanbox this was not the case. I changed the Windows 2008 VM to automatically startup with the ESX host so that I would have a DSN server available to the ESX servers.

http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1012942

Anyway...The moral of the short story is to make sure your DNS server is up and running before you try to login to the ESX servers otherwise you could be waiting a while to login to the VI client.

Saturday, July 17, 2010

VMware Introduces Enhanced Virtualization Offerings for Small and Midsize Businesses

On July 13th, 2010 VMware introduced VSphere 4.1 with supposedly over 150 new features.
Read the news here http://www.vmware.com/company/news/releases/vsphere-4-1.html

Great news for SMB's VMotion in now available for Essentials Plus!
Read the news here http://www.vmware.com/company/news/releases/vsphere-4-1-smb.html

Monday, June 21, 2010

How do I get my USB to be recognized on a VM?

First of all you need to be running VSpshere ESX 4 update 1
and your VSphere Host needs to support passthrough configuration
1. You can set this feature in the BIOS if it is a newer chipset if you do not have this option then it is most likely not going to work- Look in the BIOS for something like Intel vt-d or VT IO
2. If your machine has passthrough configured in the BIOS then go to the VI Client – Select the Host, select configuration tab then select the Advanced Settings under Hardware area.
3. You will then have to select the USB and check off for passthrough for the USB device
4. Also make sure you upgrade the virtual machine hardware to version 7 and upgrade the vm tools
5. Add a USB controller to VM- the VM needs to be powered off to add this device
You should now be able to see the USB device on the VM

Wednesday, May 19, 2010

Vista and Windows 7 desktop icons

Right Click on the Desktop
Select Personalize
Select Change Desktop Icons
Check Mark the Desktop icons you wish to show and Select OK

Thursday, May 6, 2010

How to Increase the VMFS datastore default 1MB block size of the local storage during the installation of ESX 4.0

I needed to create a VM with a 600GB vmdk. Therefore, I needed to increase the default 1MB block size of the local datastore during installation to support the block change of 4MB that I wanted. I found the VMware KB below as my reference and I was finally able to do what I needed.
I have modified the steps below that I took to make it a bit easier.

VMware KB Reference
http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1012683

1. Boot to the ESX installation DVD
2. Wait for the installation process to begin once it does Press Ctrl+Alt+F2 to switch to the shell
3. # ps grep Xorg
4. Kill the PID where 590 is the PID.For example: # kill 590 or kill 509
5. # cd /usr/lib/vmware/weasel
6. Edit the config file: # vi fsset.py
7. Locate class vmfs3FileSystem(FileSystemType):
8. Edit the blockSizeMB parameter to the block size that you want it to be. It is currently set to 1. The only values that work correctly are 1, 2, 4, and 8
9. Press i for insert mode
10. To save Esc, then :wq! and press Enter. The exclamation mark is required to save a file that is in red-only mode
11. You can verify that file has been modified by typing the following command bleow:
# grep -i blockSizeMB fsset.py
12. # cd /
13. Now launch the ESX4 installer with the new configuration of the new block size. # /bin/weasel
14. At this point you can continue your ESX4 installation
Done!

Monday, February 8, 2010

How to Sysprep Windows 2008 Server

Sysprep is now available within Windows 2008 Server. You no longer have to hunt it down and create a folder, etc., etc.

Go to a command line of the Windows 2008 server that you want to run sysprep on
Go to the C:\Windows\System32\Sysprprep
Run sysprep.exe
Choose (OOBE) System Out of Box Experience and Select Reboot

The server will run sysprep and reboot
Done!

Sunday, February 7, 2010

How to Disable Internet Explorer Enhanced Security for Windows 2008 Server

Close your Browser
Open up Server Manager and select the Root Folder
Then scroll down to the Security Information Section

The select Configure IE ESC

Check OFF Administrators then select OK

Open up your Browser
Done!

Saturday, February 6, 2010

Problem adding an Extent in VCenter 4.0

I had a problem that I could not add an Extent to an exsiting VMFS datastore using VCenter 4
The extent is not visible when you attempt to increase the DataStore within VCenter 4.

The workaround is to use the VSpehere client and connect directly to the ESX server. The extent in visible when you connect to the ESX server directly. This is most likley a bug in VCenter which will be fixed with a patch or the next release.

Saturday, January 30, 2010

How to Enable ssh on ESX3 or VSphereESX4

From the ESX Server Console
1. CD /etc/ssh
2. Use the vi editor to edit the sshd_config file
Exanple: vi sshd_config
3. Scroold dwon and find the line #PermitRootLogin no
4. Hit Insert This will allow you to modify the file
4. Remove the # and replace no with yes
Example: PermitRootLogin yes
5. Hit Esc, then :
6. Then wq This will write the changes and quit the vi editor
7. Then type in service sshd restart
This will restart the ssh service and you now be able to access the console via ssh with the user root
Done!