Working
Increasing the disk space in vCenter Server Appliance 5.x
OLDMAN
2016. 7. 4. 13:26
vcenter5.5 Appliance의 disk 용량 부족으로 시스템이 문제가 발생할수 있다.
Disk추가로 문제를 해결할수 있다.
Disk를 추가한다.
- vCenter Server Appliance 를 셧다운
- 스냅샷 생성 적당한 용량의 Disk를 추가한다.
- vCenter Server Appliance의 전원을 켠다.
- Connect to the vCenter Server Appliance using SSH.
- 디바이스 ID를 확인한다.
fdisk -lu
Note: By default, the device ID for the new disk is /dev/sdc - Access the disk utility for the new disk by running this command:
fdisk /dev/sdc- Press N then Enter for new partition
- Press P then Enter for primary partition
- Enter 1 as the partition number
- Accept the default start block and the default end block
- Enter W to write the partition table to disk
- Create a new partition on the new disk:
- Build an ext3 file system on the new disk using this command:
mkfs -t ext3 /dev/sdc1 - Create a new temporary directory under the root directory by running this command:
mkdir /tmp/db - Mount the new disk to the /tmp/db directory by running this command:
mount -t ext3 /dev/sdc1 /tmp/db - Power off all services that access the vPostgres /storage/db directory by running this commands:
service vmware-vpxd stop
service vmware-vpostgres stop
service vmdird stop
service vmware-inventoryservice stop - Copy all the /storage/db files into the /tmp/db directory by running this command:
cp -a /storage/db/* /tmp/db - Return to the root directory by running this command:
cd / - Verify the mount points by running this command:
mount
For example, you see output similar to:
/dev/sda3 on / typ ext3 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type devpts (rw,mode=0620,gid=5)
/dev/sda1 on /boot type ext3 (rw,noexec,nosuid,nodev,noacl)
/dev/sdb1 on /storage/core type ext3 (rw,nosuid,nodev)
/dev/sdb2 on /storage/log type ext3 (rw,nosuid,nodev)
/dev/sdb3 on /storage/db type ext3 (rw,nosuid,nodev)
/dev/sdc1 on /tmp/db type ext3 (rw,nosuid,nodev) - Unmount the original disk and the new disk by running these commands:
umount /dev/sdb3
umount /dev/sdc1 - Mount the new disk to the /storage/db directory by running this command:
mount -t ext3 /dev/sdc1 /storage/db - Preserve the new mount to the /storage/db directory by running the command:
sed -i -e 's#/dev/sdb3#/dev/sdc1#' /etc/fstab
Note: Do not remove /sdb3 from the virtual machine. - Reboot the vCenter Server Appliance.