본문 바로가기

Virtualization/VMware vSphere

[VMware] ESXi 설치 날짜가 궁금하다면? How to find installation date of ESXi

상황에 따라 ESXi 설치 날짜를 확인해야 하는 경우가 있다.

ESXi System UUID의 시작 부분은 UUID가 최초 생성된 일자를 16진수로 변환된 값이다.

 

 

~#esxcli system uuid get

 

예를 들면, 사진처럼 System UUID의 앞부분이 "5f3f80c4"이다.

16진수 to 10진수 변환 URL : www.binaryhexconverter.com/hex-to-decimal-converter

10진수 날짜 변환 URL : www.epochconverter.com/

변환하면 사진처럼 내 ESXi의 설치 날짜가 2020-08-21 08:07 (UTC)인 것을 확인할 수 있다.

 

 

 

 

 

하지만

 

사실 훨씬 간단한 명령어가 있다.

ESXi SSH 접속해서

 

~#echo -n "ESXi install date: " ; date -d @$(printf "%d" 0x$(esxcli system uuid get | cut -d \- -f1 ))

 

해당 명령어만 입력하면 Command Level에서 바로 출력된다.

 

 

깔~끔.

 

 

 

 

VMware KB : kb.vmware.com/s/article/2144905

참고 블로그 : vcdx56.com/2016/01/find-esxi-installation-date/