vCenter Server Service Status alerts
发表于 : 2014年 2月 25日 19:06 星期二
最近遇到一个客户的vCenter Server问题,主机型号是HP BL685c G7
关于Service status里面有几项服务提示失败或者警报
最后通过修改了一下配置文件,重启服务后解决。
把解决方法分享出来,供参考。
查看配置文件,C:\ProgramData\VMware\VMware VirtualCenter\vcdb.properties
上面显示的数据库联接是针对DB2的,但实际上安装配置的应该是ms sql server,因此改成如下
最后重启服务VMware VirtualCenter Management Webservices,故障就消失了。
关于Service status里面有几项服务提示失败或者警报
最后通过修改了一下配置文件,重启服务后解决。
把解决方法分享出来,供参考。
查看配置文件,C:\ProgramData\VMware\VMware VirtualCenter\vcdb.properties
代码: 全选
# For Windows, just deduce the JDBC URL and user/password from the
# data source information in the VC registry
usevcdb=true
url=jdbc:sqlserver://<server address>;databaseName\=<databasename>
dbtype=db2
driver=com.ibm.db2.jcc.DB2Driver
代码: 全选
# For Windows, just deduce the JDBC URL and user/password from the
# data source information in the VC registry
usevcdb=true
url=jdbc:sqlserver://<server address>;databaseName\=<databasename>
dbtype=mssql
driver=com.microsoft.sqlserver.jdbc.SQLServerDriver