# smbiosDump |grep -A 4 'Physical Memory Array' sample output below Physical Memory Array: #4096 Use: 0x03 (System memory) Location: 0x03 (Motherboard) Slots: 24 Max. Size: 1536 GB This shows that 24 slots and a total of 1536 GB of memory can be installed. So this server can be filled with 24x64GB sticks of memory. Secondly which slots have memory installed, along with type and size. # smbiosDum..
An error occurred while saving the snapshot: Failed to quiesce the virtual machine. guest VM clone시 위와 같이 에러가 발생할 경우 해당 guestVM에서 %programdata%\VMware\VMware Tools\tools.conf 파일안에 아래 내용을 저정한 후 (파일 없으면 생성) [vmbackup]vss.disableAppQuiescing = true vmware-tools 서비스를 재시작
https://blogs.vmware.com/PowerCLI/2017/05/powercli-6-5-1-install-walkthrough.html
이전작업도중 특정호스트에서 unknown이라고 표시가 떠서 해당 호스트에 있었던 게스트OS 리스트가 필요해서 아래와 같이 확인하였습니다. SELECT * FROM [dbo].[VPX_HOST_X] [VPX_HOST_X]테이블에서 해당 호스트의 HOST_ID정보를 확인합니다. SELECT * FROM [dbo].[VPX_VM] where HOST_ID=43835 [VPX_VM]테이블에서 위에서 확인된 해당 HOST_ID정보로 리스트를 추출합니다.
esxi호스트 IP를 변경해야할 일이 생겨서 vcenter 클라이언트를 통해서 IP변경할 경우 아래와 같이 오류가 발생하였습니다ㅜㅜ 변경할 esxi호스트 ssh 또는 esxi쉘로 접속하여 아래와 같이 바꾸고자 하는 네트워크어댑터 리스트 확인후 # esxcli network ip interface ipv4 get 아래와 같이 변경하고자 하는 IP정보와 서브넷 정보를 입력하시면 됩니다. # esxcli network ip interface ipv4 set -i vmk1 -I [ip address] -N [subnet] -t static 출처 : https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&external..