USE THIS LINK FOR ESVA2
After we added the second virtual disk which was 8GB in size, I noticed a drop in performance on our server. We have 6 VM's running on our server, and never really had a problem with performance until adding another virtual disk to the mix.
Since I had to install a new ESVA 1.7 (as 2.0 isn't out yet), I decided to increase the size of the virtual disk that ESVA is installed on by default by 25GB. After increasing the size of the ONE virtual disk, performance went back to normal, pre-quarantine disk setup. Below is what I used and how I changed the disk space without adding a second virtual disk or physical disk.
VMWare Server 2.0.0 Beta (Build 101583) (used only to initially setup ESVA before going on production server which is VMWare Server 1.x)
- Code: Select all
1. Open VMWare Server
a. Turn OFF ESVA1715
b. Click on "Edit" for Hard Disk 1 (SCSI 0:0)
c. Click "Increase Capacity..."
i. Change New Capacity:
1. 25GB
ii. Click OK
2. Extend the Logical Volume
a. Power on ESVA
i. Login in as root
1. $parted /dev/sda [enter]
a. > mkpart [enter]
i. > primary [enter]
ii. > ext3 [enter]
iii. > 4094.692 [enter]
iv. > 25600 [enter]
b. > quit [enter]
2. $mkfs.ext3 /dev/sda3 [enter]
3. $pvcreate /dev/sda3 [enter]
4. $vgextend VolGroup00 /dev/sda3 [enter]
5. $lvextend -L21G /dev/VolGroup00/LogVol00 [enter]
6. $ext2online /dev/VolGroup00/LogVol00 [enter]
7. $/sbin/shutdown -r now [enter]
This will increase your drive space to an available 21GB of space without the need of adding another virtual disk or physical disk. (on a new install there will only be 7% used
Notes:
1. This can be used on ESVA that is currently in use. However, I imagine that the online file system resize will take an extra amount of time.
2. You have to shutdown ESVA on the VMWare server to be able to resize the virtual disk.
3. I have not tried to resize the virtual disk with VMWare Server 1.x. Although I resized the virtual disk with VMWare Server 2.0, ESVA is RUNNING on VMWare Server 1.x.
4. The very last reboot is only to ensure that the system is bootable and works upon extending the volumes.
5. You can change the size from the 25GB I have listed here, but all of the numbers will be changed. (the parted parameters and the lvextend parameters)
6. When typing the commands in the terminal, do not type in the $ (dollar sign) symbol. This symbol is only to designate the following command to be typed into the terminal.
7. When typing the commands in the terminal, do not type in the > (right arrow) symbol. This symbol is only to designate the following command to be typed into the terminal application you are currently in
Cheers.
