这两天装了下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