vSphere 6.0 NTP Service 配置
阿新 • • 發佈:2020-10-13
這兩天裝了下Esxi6.0,準備體驗下,於是就在VMware workstation11.0開始了安裝測試,待安裝完畢後,我用一臺加入域環境的Win7 客戶端安裝vSphere client 6.0登陸Esxi host管理,登陸介面如下圖所示。
在配置NTP服務的時候會報錯誤,大致內容如下"HostServiceSystem.Start" for object "serviceSystem" on ESXi "server.domain.com" failed”於是就只能求助google,藉助這個網站我找到了同樣suffered的夥伴們,https://communities.vmware.com/thread/505146
需要藉助ssh工具登陸到Esxi host修改ntp config引數,有了secureCRT工具就方便很多了,下圖示:
詳細命令
[[email protected]:~] cat /etc/ntp.conf
restrict 127.0.0.1
restrict default kod nomodify notrap
driftfile /etc/ntp.drift
server 192.168.80.10 version 3
server 192.168.80.2 version 3
我加了2條IP地址,多虧linux同事的help,才搞定了用vi編輯,完後遠端reboot Esxi主機,再次進入到vSphere client端,現在已經能在GUI介面看到編輯後的結果
可能是vSphere 6.0的一個bug,因為在5.5中沒有這個現象,希望能改進。
轉載於:https://blog.51cto.com/daniel1205/1637931