VMware vCenter 连接数据库的故障与密码修改

来源:互联网 发布:流程优化步骤 编辑:程序博客网 时间:2024/05/29 10:55
       在生产环境中如果使用Oracle 11g 作为VMware vCenter数据存放的数据库,就一定要主要Oracle 11g的安全特性,如果不再一开始的时候修改Oracle对于用户密码过期的限制,就可能造成vCenter所用的oracle数据库密码在使用 180 天后,就会被突然锁定,造成vCenter无法启动和访问。
       今天在生产系统中遇到一个因数据库密码过期而导致的vCenter无法启动的问题,根据网上的类似案例,进行了实际处理,并记录了vCenter的密码修改方式,以作为类似问题的记录。
      通过这个案例,也说明以后在使用Oracle 11g数据库的时候,必须修改默认口令文件中的密码失效时间,错误登录锁定次数等参数,以避免一些不必要的问题。

      一、类似现象
       今天在系统中遇到一个和这个帖子现象类似的问题:
http://blog.sina.com.cn/s/blog_835367910101fzb1.html

现象:VCenter5.1 服务无法启动

到log查看VPXD文件

2013-11-19T10:36:57.937+08:00 [04672 error 'vpxdvpxdMain'] [Vpxd::ServerApp::Init] Init failed: Unexpected exception
--> Backtrace:
--> backtrace[00] rip 0000000180100c98
--> backtrace[01] rip 0000000180101fae
--> backtrace[02] rip 000000018008aeab
--> backtrace[03] rip 0000000000584971
--> backtrace[04] rip 0000000000521298
--> backtrace[05] rip 00000000005216c9
--> backtrace[06] rip 0000000000490fae
--> backtrace[07] rip 000000014112bfb8
--> backtrace[08] rip 0000000140020078
--> backtrace[09] rip 000000014002016a
--> backtrace[10] rip 0000000140020279
--> backtrace[11] rip 0000000140020609
--> backtrace[12] rip 0000000140362903
--> backtrace[13] rip 0000000140b0e4b9
--> backtrace[14] rip 0000000140b0835c
--> backtrace[15] rip 0000000140d28a3b
--> backtrace[16] rip 000007ff7fed4dc6
--> backtrace[17] rip 0000000078d3b70a
--> backtrace[18] rip 0000000000000000
-->
2013-11-19T10:36:57.937+08:00 [04672 warning 'VpxProfiler'] ServerApp::Init [TotalTime] took 4250 ms
2013-11-19T10:36:57.937+08:00 [04672 error 'Default'] Failed to intialize VMware VirtualCenter. Shutting down...
2013-11-19T10:36:57.937+08:00 [04672 info 'vpxdvpxdSupportManager'] Wrote uptime information
2013-11-19T10:37:05.687+08:00 [01572 warning 'VpxProfiler' opID=SWI-22545730] VpxUtil_InvokeWithOpId [TotalTime] took 12000 ms
2013-11-19T10:37:17.687+08:00 [04636 warning 'VpxProfiler' opID=SWI-b8822e55] VpxUtil_InvokeWithOpId [TotalTime] took 12000 ms
2013-11-19T10:37:29.687+08:00 [04904 warning 'VpxProfiler' opID=SWI-73e8350a] VpxUtil_InvokeWithOpId [TotalTime] took 12000 ms
2013-11-19T10:37:41.687+08:00 [04464 warning 'VpxProfiler' opID=SWI-83953f27] VpxUtil_InvokeWithOpId [TotalTime] took 12000 ms
2013-11-19T10:37:53.687+08:00 [01572 warning 'VpxProfiler' opID=SWI-8441138f] VpxUtil_InvokeWithOpId [TotalTime] took 12000 ms
2013-11-19T10:37:54.187+08:00 [04672 info 'Default'] Forcing shutdown of VMware VirtualCenter now

查看SSO log文件:

Caused by: java.sql.SQLException: ORA-28001: the password has expired

 at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
 at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:388)
 at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:381)
 at oracle.jdbc.driver.T4CTTIfun.processError(T4CTTIfun.java:564)
 at oracle.jdbc.driver.T4CTTIoauthenticate.processError(T4CTTIoauthenticate.java:431)

分析:

原因是账户密码已过期,数据库采用的是oracle 11g,新增加了账户安全性,密码有效期为180天,之前的oracle 9i/10g都没有这个问题,VCenter安装时vc数据库用户vpxadmin,另外SSO的数据库用户RSA_DBA和RSA_USER,总共三个账号。

查看数据库账户配置:

$sqlplus / as sysdba

select * from dba_profiles WHERE dba_profiles.profile='DEFAULT';

 

1、查看用户的proifle是哪个,一般是default:

sql>SELECT username,PROFILE FROM dba_users;

2、查看指定概要文件(如default)的密码有效期设置:

sql>SELECT * FROM dba_profiles s WHERE s.profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME';

3、可以将密码有效期由默认的180天修改成“无限制”:

sql>ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;

4、解除账户锁定:

sql> alter user vpxadmin  account  unlock;

修改完成后虽然是立即生效,但是VC不一定能启动,我的是这样,可能跟VC的某些服务有关,重启系统就好了。


       二、生产环境问题处理
       生产环境中一台测试系统的vCenter突然服务断开,在vCenter的日志目录:
C:\ProgramData\VMware\VMware VirtualCenter\Logs\
      查看目前日志文件中的 vpxd-47.log 
      结合生产环境中的vCenter服务启动报错,基本可以断定是vCenter所用的oracle数据库用户密码失效导致的原因:
2014-12-18T17:40:02.669+08:00 [05784 info 'commonvpxLro' opID=HB-host-9@650533-a7f49c6] [VpxLRO] -- BEGIN task-internal-195746 -- host-9 -- VpxdInvtHostSyncHostLRO.Synchronize -- 2014-12-18T17:40:02.670+08:00 [05784 info 'vpxdvpxdInvtHostCnx' opID=HB-host-9@650533-a7f49c6] [VpxdHostSync] Synchronizing host: host-9 (172.32.1.210, 172.32.1.210)2014-12-18T17:40:02.674+08:00 [05784 info 'vpxdvpxdVmomi' opID=HB-host-9@650533-a7f49c6] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.retrieveChanges)2014-12-18T17:40:02.676+08:00 [05784 info 'vpxdvpxdVmomi' opID=HB-host-9@650533-a7f49c6] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vmodl.query.PropertyCollector.createFilter)2014-12-18T17:40:02.684+08:00 [05944 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:40:02.735+08:00 [05944 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:40:02.738+08:00 [05944 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:40:02.741+08:00 [05784 info 'vpxdvpxdVmomi' opID=HB-host-9@650533-a7f49c6] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vmodl.query.PropertyCollector.Filter.destroy)2014-12-18T17:40:02.744+08:00 [05784 info 'vpxdvpxdVmomi' opID=HB-host-9@650533-a7f49c6] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vmodl.query.PropertyCollector.cancelWaitForUpdates)2014-12-18T17:40:03.744+08:00 [05784 info 'vpxdvpxdInvtHostCnx' opID=HB-host-9@650533-a7f49c6] [VpxdHostSync] Retrieved host update to 650533 for host-92014-12-18T17:40:03.774+08:00 [05784 info 'vpxdvpxdInvtHostDb' opID=HB-host-9@650533-a7f49c6] [VpxdInvtHost::SaveFieldsToDb] IPMI info of host 172.32.1.210 is not set2014-12-18T17:40:03.782+08:00 [05784 info 'vpxdvpxdInvtHostCnx' opID=HB-host-9@650533-a7f49c6] [VpxdHostSync] Completed host synchronization for host-92014-12-18T17:40:03.783+08:00 [05784 info 'commonvpxLro' opID=HB-host-9@650533-a7f49c6] [VpxLRO] -- FINISH task-internal-195746 -- host-9 -- VpxdInvtHostSyncHostLRO.Synchronize -- 2014-12-18T17:40:03.935+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:40:03.935+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:40:03.935+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:40:03.935+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:40:05.012+08:00 [02976 info 'vpxdvpxdVmomi' opID=SWI-1ee9b90a] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.querySummaryStatistics)2014-12-18T17:40:05.012+08:00 [02976 info 'drmLogger' opID=SWI-1ee9b90a] [VpxDrmStatsManager::GetMetricsToCollect] No datastores requiring stats collection on host vim.HostSystem:host-1617, early return2014-12-18T17:40:05.013+08:00 [05924 info 'vpxdvpxdVmomi' opID=SWI-60606a88] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.querySummaryStatistics)2014-12-18T17:40:05.013+08:00 [05924 info 'drmLogger' opID=SWI-60606a88] [VpxDrmStatsManager::GetMetricsToCollect] No datastores requiring stats collection on host vim.HostSystem:host-2001, early return2014-12-18T17:40:05.014+08:00 [03648 info 'vpxdvpxdVmomi' opID=SWI-2d4474ec] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.querySummaryStatistics)2014-12-18T17:40:05.014+08:00 [03648 info 'drmLogger' opID=SWI-2d4474ec] [VpxDrmStatsManager::GetMetricsToCollect] No datastores requiring stats collection on host vim.HostSystem:host-45, early return2014-12-18T17:40:05.015+08:00 [01444 info 'vpxdvpxdVmomi' opID=SWI-232bdc15] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.querySummaryStatistics)2014-12-18T17:40:05.015+08:00 [01444 info 'drmLogger' opID=SWI-232bdc15] [VpxDrmStatsManager::GetMetricsToCollect] No datastores requiring stats collection on host vim.HostSystem:host-9, early return2014-12-18T17:40:05.091+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:05.143+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:05.175+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:05.184+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:05.579+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:15.092+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:40:15.128+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:15.144+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:40:15.176+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:40:15.178+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:15.185+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:40:15.212+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:15.224+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:15.580+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:40:15.618+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:21.000+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:25.171+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:25.212+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:25.251+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:25.262+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:25.657+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:31.001+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:40:31.035+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:35.206+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:35.245+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:35.285+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:35.303+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:35.696+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:41.066+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:45.243+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:45.279+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:45.318+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:45.340+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:45.730+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:51.101+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:52.674+08:00 [02804 info 'commonvpxLro' opID=HB-host-9@650536-24f55e4d] [VpxLRO] -- BEGIN task-internal-195747 -- host-9 -- VpxdInvtHostSyncHostLRO.Synchronize -- 2014-12-18T17:40:52.675+08:00 [02804 info 'vpxdvpxdInvtHostCnx' opID=HB-host-9@650536-24f55e4d] [VpxdHostSync] Synchronizing host: host-9 (172.32.1.210, 172.32.1.210)2014-12-18T17:40:52.683+08:00 [02804 info 'vpxdvpxdVmomi' opID=HB-host-9@650536-24f55e4d] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.retrieveChanges)2014-12-18T17:40:52.685+08:00 [02804 info 'vpxdvpxdVmomi' opID=HB-host-9@650536-24f55e4d] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vmodl.query.PropertyCollector.createFilter)2014-12-18T17:40:52.693+08:00 [03772 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:40:52.742+08:00 [03772 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:40:52.749+08:00 [03772 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:40:52.753+08:00 [02804 info 'vpxdvpxdVmomi' opID=HB-host-9@650536-24f55e4d] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vmodl.query.PropertyCollector.Filter.destroy)2014-12-18T17:40:52.755+08:00 [02804 info 'vpxdvpxdVmomi' opID=HB-host-9@650536-24f55e4d] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vmodl.query.PropertyCollector.cancelWaitForUpdates)2014-12-18T17:40:53.756+08:00 [02804 info 'vpxdvpxdInvtHostCnx' opID=HB-host-9@650536-24f55e4d] [VpxdHostSync] Retrieved host update to 650536 for host-92014-12-18T17:40:53.792+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:55.271+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:55.317+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:55.352+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:55.380+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:55.769+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:40:58.020+08:00 [05776 info 'commonvpxLro' opID=HB-host-45@368570-6210bf4f] [VpxLRO] -- BEGIN task-internal-195748 -- host-45 -- VpxdInvtHostSyncHostLRO.Synchronize -- 2014-12-18T17:40:58.021+08:00 [05776 info 'vpxdvpxdInvtHostCnx' opID=HB-host-45@368570-6210bf4f] [VpxdHostSync] Synchronizing host: host-45 (172.32.1.205, 172.32.1.205)2014-12-18T17:40:58.031+08:00 [05776 info 'vpxdvpxdVmomi' opID=HB-host-45@368570-6210bf4f] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.retrieveChanges)2014-12-18T17:40:58.040+08:00 [05776 info 'vpxdvpxdVmomi' opID=HB-host-45@368570-6210bf4f] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vmodl.query.PropertyCollector.createFilter)2014-12-18T17:40:58.073+08:00 [05236 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:40:58.247+08:00 [05236 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:40:58.255+08:00 [05236 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:40:58.265+08:00 [05236 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:40:58.272+08:00 [05776 info 'vpxdvpxdVmomi' opID=HB-host-45@368570-6210bf4f] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vmodl.query.PropertyCollector.Filter.destroy)2014-12-18T17:40:58.277+08:00 [05776 info 'vpxdvpxdVmomi' opID=HB-host-45@368570-6210bf4f] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vmodl.query.PropertyCollector.cancelWaitForUpdates)2014-12-18T17:40:59.277+08:00 [05776 info 'vpxdvpxdInvtHostCnx' opID=HB-host-45@368570-6210bf4f] [VpxdHostSync] Retrieved host update to 368570 for host-452014-12-18T17:40:59.460+08:00 [05936 warning 'Proxy Req 89294'] The client closed the stream with a request not fully forwarded.2014-12-18T17:41:01.140+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:03.792+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:41:03.825+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:03.935+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:41:03.935+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:41:03.935+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:41:03.935+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:41:05.301+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:05.351+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:05.386+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:05.414+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:05.820+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:11.174+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:13.859+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:15.333+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:15.385+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:15.419+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:15.447+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:15.860+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:19.516+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:21.208+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:23.899+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:25.373+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:25.419+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:25.454+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:25.578+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:25.899+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:29.517+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:41:29.562+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:31.247+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:33.933+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:35.407+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:35.452+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:35.492+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:35.612+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:35.932+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:39.601+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:41.281+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:43.972+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:45.447+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:45.486+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:45.526+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:45.646+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:45.972+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:49.640+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:51.332+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:54.011+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:55.507+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:55.543+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:55.572+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:55.680+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:56.005+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:41:59.474+08:00 [05936 warning 'Proxy Req 89300'] The client closed the stream with a request not fully forwarded.2014-12-18T17:41:59.686+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:01.383+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:01.717+08:00 [05648 info 'commonvpxLro' opID=HB-host-2001@115456-5b29654f] [VpxLRO] -- BEGIN task-internal-195749 -- host-2001 -- VpxdInvtHostSyncHostLRO.Synchronize -- 2014-12-18T17:42:01.718+08:00 [05648 info 'vpxdvpxdInvtHostCnx' opID=HB-host-2001@115456-5b29654f] [VpxdHostSync] Synchronizing host: host-2001 (172.32.1.207, 172.32.1.207)2014-12-18T17:42:01.728+08:00 [05648 info 'vpxdvpxdVmomi' opID=HB-host-2001@115456-5b29654f] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.retrieveChanges)2014-12-18T17:42:01.741+08:00 [05648 info 'vpxdvpxdVmomi' opID=HB-host-2001@115456-5b29654f] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vmodl.query.PropertyCollector.createFilter)2014-12-18T17:42:01.751+08:00 [05924 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:42:01.847+08:00 [05924 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:42:01.853+08:00 [05924 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:42:01.862+08:00 [05648 info 'vpxdvpxdVmomi' opID=HB-host-2001@115456-5b29654f] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vmodl.query.PropertyCollector.Filter.destroy)2014-12-18T17:42:01.865+08:00 [05648 info 'vpxdvpxdVmomi' opID=HB-host-2001@115456-5b29654f] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vmodl.query.PropertyCollector.cancelWaitForUpdates)2014-12-18T17:42:02.865+08:00 [05648 info 'vpxdvpxdInvtHostCnx' opID=HB-host-2001@115456-5b29654f] [VpxdHostSync] Retrieved host update to 115456 for host-20012014-12-18T17:42:02.909+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:03.936+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:42:03.936+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:42:03.936+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:42:03.936+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:42:04.052+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:05.576+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:05.601+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:05.619+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:05.721+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:06.046+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:09.727+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:11.424+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:12.909+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:42:12.949+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:14.093+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:15.619+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:15.641+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:15.660+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:15.756+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:16.081+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:19.760+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:21.503+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:22.988+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:24.132+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:25.662+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:25.681+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:25.697+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:25.800+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:26.125+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:29.800+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:31.542+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:33.028+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:34.176+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:35.705+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:35.721+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:35.742+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:35.834+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:36.161+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:39.840+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:41.577+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:43.062+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:44.214+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:45.748+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:45.757+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:45.785+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:45.867+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:46.192+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:49.876+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:51.613+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:53.102+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:53.947+08:00 [05964 info 'commonvpxLro' opID=9A386B63-0000794C-9b] [VpxLRO] -- BEGIN task-internal-195750 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T17:42:53.947+08:00 [05964 info 'commonvpxLro' opID=9A386B63-0000794C-9b] [VpxLRO] -- FINISH task-internal-195750 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T17:42:53.947+08:00 [05236 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x000000000f73b4a8, h:10360, <TCP '[::1]:8085'>, <TCP '[::1]:59033'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T17:42:54.259+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:55.749+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:42:55.759+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:42:55.786+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:42:55.803+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:55.809+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:55.831+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:55.868+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:42:55.899+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:56.194+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:42:56.225+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:42:59.491+08:00 [05936 warning 'Proxy Req 89308'] The client closed the stream with a request not fully forwarded.2014-12-18T17:42:59.912+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:01.649+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:03.135+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:03.936+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:43:03.936+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:43:03.937+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:43:03.937+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:43:04.298+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:05.853+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:05.859+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:05.889+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:05.934+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:06.261+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:09.949+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:10.555+08:00 [02976 info 'commonvpxLro' opID=9A386B63-0000794F-66] [VpxLRO] -- BEGIN task-internal-195751 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T17:43:10.556+08:00 [02976 info 'commonvpxLro' opID=9A386B63-0000794F-66] [VpxLRO] -- FINISH task-internal-195751 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T17:43:10.556+08:00 [02812 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x00000000134892b8, h:10988, <TCP '[::1]:8085'>, <TCP '[::1]:64242'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T17:43:11.650+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:43:11.686+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:13.171+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:14.338+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:15.905+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:15.910+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:15.942+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:15.975+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:16.297+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:19.986+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:21.726+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:23.208+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:24.373+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:25.955+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:25.961+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:25.984+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:26.014+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:26.329+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:30.022+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:31.766+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:33.244+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:34.414+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:36.006+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:36.011+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:36.031+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:36.050+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:36.370+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:40.059+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:41.802+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:42.531+08:00 [05964 info 'commonvpxLro' opID=01C0A319-0000C0ED-80] [VpxLRO] -- BEGIN task-internal-195752 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- a40802c5-bb73-9f71-dd9f-3025d9066c8b(52688827-bbbd-4a2f-409a-49bdfccce6ef)2014-12-18T17:43:42.531+08:00 [05100 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x000000000ead5618, h:10304, <TCP '[::1]:8085'>, <TCP '[::1]:64281'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T17:43:42.532+08:00 [05964 info 'commonvpxLro' opID=01C0A319-0000C0ED-80] [VpxLRO] -- FINISH task-internal-195752 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T17:43:43.282+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:44.415+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:43:44.456+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:46.057+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:46.063+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:46.076+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:46.093+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:46.404+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:50.101+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:51.849+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:53.321+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:54.489+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:56.107+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:56.124+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:56.129+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:56.135+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:43:56.438+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:00.141+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:01.883+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:03.356+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:03.937+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:44:03.937+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:44:03.938+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:44:03.938+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:44:04.529+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:06.144+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:06.166+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:06.173+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:06.184+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:06.483+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:10.141+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:44:10.174+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:11.922+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:13.394+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:14.566+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:16.195+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:16.217+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:16.223+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:16.228+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:16.528+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:20.208+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:21.967+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:23.435+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:24.602+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:26.236+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:26.259+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:26.275+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:26.281+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:26.561+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:30.246+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:32.006+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:33.468+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:34.641+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:36.275+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:36.303+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:36.320+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:36.325+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:36.595+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:40.281+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:42.046+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:42.542+08:00 [05936 warning 'Proxy Req 89319'] The client closed the stream with a request not fully forwarded.2014-12-18T17:44:43.515+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:44.697+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:46.315+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:46.354+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:46.371+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:46.377+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:46.423+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:46.628+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:50.318+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:52.090+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:53.516+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:44:53.553+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:54.732+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:56.349+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:56.390+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:56.411+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:56.422+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:56.424+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:44:56.457+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:44:56.657+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:00.355+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:00.378+08:00 [01444 info 'commonvpxLro' opID=01C0A319-0000C0EF-8] [VpxLRO] -- BEGIN task-internal-195753 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- a40802c5-bb73-9f71-dd9f-3025d9066c8b(52688827-bbbd-4a2f-409a-49bdfccce6ef)2014-12-18T17:45:00.379+08:00 [05100 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x000000000f73ae38, h:3088, <TCP '[::1]:8085'>, <TCP '[::1]:60750'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T17:45:00.380+08:00 [01444 info 'commonvpxLro' opID=01C0A319-0000C0EF-8] [VpxLRO] -- FINISH task-internal-195753 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T17:45:02.131+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:03.588+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:03.937+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:45:03.937+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:45:03.937+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:45:03.937+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:45:04.770+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:05.000+08:00 [05192 warning 'vpxdvpxdMoHost' opID=SWI-7e691760] [HostMo::CollectRemote] Not collecting stats this time on host host-1617 because collection pending2014-12-18T17:45:05.000+08:00 [05184 warning 'vpxdvpxdMoHost' opID=SWI-6b1b7634] [HostMo::CollectRemote] Not collecting stats this time on host host-2001 because collection pending2014-12-18T17:45:05.000+08:00 [05128 warning 'vpxdvpxdMoHost' opID=SWI-2b30c0f6] [HostMo::CollectRemote] Not collecting stats this time on host host-45 because collection pending2014-12-18T17:45:05.000+08:00 [05212 warning 'vpxdvpxdMoHost' opID=SWI-67efc51a] [HostMo::CollectRemote] Not collecting stats this time on host host-9 because collection pending2014-12-18T17:45:06.383+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:06.428+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:06.445+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:06.463+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:06.495+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:06.691+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:10.400+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:12.171+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:13.628+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:14.805+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:16.426+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:16.468+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:16.485+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:16.502+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:16.531+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:16.723+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:20.439+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:22.222+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:23.666+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:24.838+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:26.466+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:26.506+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:26.525+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:26.540+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:26.569+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:26.752+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:30.477+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:32.255+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:33.701+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:34.871+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:36.467+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:45:36.501+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:36.507+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:45:36.526+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:45:36.541+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:45:36.541+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:36.564+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:36.581+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:36.607+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:36.753+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:45:36.786+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:40.521+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:42.289+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:43.745+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:44.906+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:45.494+08:00 [02976 info 'commonvpxLro' opID=9A386B63-00007951-45] [VpxLRO] -- BEGIN task-internal-195754 --  -- vmodl.query.PropertyCollector.retrieveContents -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T17:45:45.495+08:00 [02976 info 'commonvpxLro' opID=9A386B63-00007951-45] [VpxLRO] -- FINISH task-internal-195754 --  -- vmodl.query.PropertyCollector.retrieveContents -- 2014-12-18T17:45:45.500+08:00 [05212 info 'commonvpxLro' opID=9A386B63-00007952-81] [VpxLRO] -- BEGIN task-internal-195755 --  -- vmodl.query.PropertyCollector.retrieveContents -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T17:45:45.501+08:00 [05212 info 'commonvpxLro' opID=9A386B63-00007952-81] [VpxLRO] -- FINISH task-internal-195755 --  -- vmodl.query.PropertyCollector.retrieveContents -- 2014-12-18T17:45:45.513+08:00 [05952 info 'commonvpxLro' opID=9A386B63-00007953-88] [VpxLRO] -- BEGIN task-internal-195756 --  -- vim.alarm.AlarmManager.getAlarmActionsEnabled -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T17:45:45.517+08:00 [05952 info 'commonvpxLro' opID=9A386B63-00007953-88] [VpxLRO] -- FINISH task-internal-195756 --  -- vim.alarm.AlarmManager.getAlarmActionsEnabled -- 2014-12-18T17:45:46.541+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:46.575+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:46.604+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:46.620+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:46.644+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:46.820+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:50.557+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:52.290+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:45:52.329+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:53.780+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:54.940+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:56.579+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:56.612+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:56.650+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:56.664+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:56.684+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:45:56.852+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:00.385+08:00 [05924 warning 'Proxy Req 89328'] The client closed the stream with a request not fully forwarded.2014-12-18T17:46:00.594+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:02.376+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:03.821+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:03.938+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:46:03.938+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:46:03.938+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:46:03.938+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:46:04.971+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:06.615+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:06.649+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:06.690+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:06.703+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:06.720+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:06.886+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:10.632+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:12.411+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:13.860+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:15.017+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:16.650+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:16.685+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:16.724+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:16.745+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:16.759+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:16.918+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:20.672+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:22.451+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:23.900+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:25.018+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:46:25.054+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:26.684+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:26.718+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:26.758+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:26.788+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:26.798+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:26.951+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:30.705+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:31.216+08:00 [02976 info 'commonvpxLro' opID=40bf492a] [VpxLRO] -- BEGIN task-internal-195757 --  -- vim.ServiceInstance.GetContent -- be00741c-6747-a347-8744-9ad083791e342014-12-18T17:46:31.217+08:00 [02976 info 'commonvpxLro' opID=40bf492a] [VpxLRO] -- FINISH task-internal-195757 --  -- vim.ServiceInstance.GetContent -- 2014-12-18T17:46:31.224+08:00 [02812 info 'commonvpxLro' opID=73343aaf] [VpxLRO] -- BEGIN task-internal-195758 --  -- vim.SessionManager.loginExtensionByCertificate -- be00741c-6747-a347-8744-9ad083791e342014-12-18T17:46:31.226+08:00 [02812 info 'commonvpxLro' opID=73343aaf] [VpxLRO] -- FINISH task-internal-195758 --  -- vim.SessionManager.loginExtensionByCertificate -- 2014-12-18T17:46:31.252+08:00 [05936 info 'commonvpxLro' opID=3aa29c7f] [VpxLRO] -- BEGIN task-internal-195759 --  -- vim.ServiceInstance.GetContent -- be00741c-6747-a347-8744-9ad083791e34(52960330-2e01-81d4-0b1a-0ffc0a8a6a79)2014-12-18T17:46:31.253+08:00 [05936 info 'commonvpxLro' opID=3aa29c7f] [VpxLRO] -- FINISH task-internal-195759 --  -- vim.ServiceInstance.GetContent -- 2014-12-18T17:46:31.260+08:00 [05224 info 'commonvpxLro' opID=44b33f43] [VpxLRO] -- BEGIN task-internal-195760 --  -- vim.ServiceInstance.retrieveInternalContent -- be00741c-6747-a347-8744-9ad083791e34(52960330-2e01-81d4-0b1a-0ffc0a8a6a79)2014-12-18T17:46:31.261+08:00 [05224 info 'commonvpxLro' opID=44b33f43] [VpxLRO] -- FINISH task-internal-195760 --  -- vim.ServiceInstance.retrieveInternalContent -- 2014-12-18T17:46:31.265+08:00 [05224 info 'commonvpxLro' opID=3440e9a7] [VpxLRO] -- BEGIN task-internal-195761 -- host-45 -- vim.HostSystem.acquireCimServicesTicket -- be00741c-6747-a347-8744-9ad083791e34(52960330-2e01-81d4-0b1a-0ffc0a8a6a79)2014-12-18T17:46:31.278+08:00 [05224 info 'vpxdvpxdVmomi' opID=3440e9a7] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vim.HostSystem.acquireCimServicesTicket)2014-12-18T17:46:31.279+08:00 [05224 info 'commonvpxLro' opID=3440e9a7] [VpxLRO] -- FINISH task-internal-195761 -- host-45 -- vim.HostSystem.acquireCimServicesTicket -- 2014-12-18T17:46:32.490+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:32.705+08:00 [05252 info 'commonvpxLro' opID=3ea47c07] [VpxLRO] -- BEGIN task-internal-195762 --  -- vim.SessionManager.GetCurrentSession -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T17:46:32.705+08:00 [05252 info 'commonvpxLro' opID=3ea47c07] [VpxLRO] -- FINISH task-internal-195762 --  -- vim.SessionManager.GetCurrentSession -- 2014-12-18T17:46:32.710+08:00 [02976 info 'commonvpxLro' opID=607acfe4] [VpxLRO] -- BEGIN task-internal-195763 --  -- vim.ServiceDirectory.queryServiceEndpointList -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T17:46:32.715+08:00 [02976 info 'commonvpxLro' opID=607acfe4] [VpxLRO] -- FINISH task-internal-195763 --  -- vim.ServiceDirectory.queryServiceEndpointList -- 2014-12-18T17:46:32.719+08:00 [05212 info 'commonvpxLro' opID=6658e870] [VpxLRO] -- BEGIN task-internal-195764 --  -- vim.LicenseManager.GetLicenseAssignmentManager -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T17:46:32.719+08:00 [05212 info 'commonvpxLro' opID=6658e870] [VpxLRO] -- FINISH task-internal-195764 --  -- vim.LicenseManager.GetLicenseAssignmentManager -- 2014-12-18T17:46:32.724+08:00 [02976 info 'commonvpxLro' opID=5b9c6f25] [VpxLRO] -- BEGIN task-internal-195765 --  -- vim.LicenseAssignmentManager.queryAssignedLicenses -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T17:46:32.735+08:00 [02976 info 'commonvpxLro' opID=5b9c6f25] [VpxLRO] -- FINISH task-internal-195765 --  -- vim.LicenseAssignmentManager.queryAssignedLicenses -- 2014-12-18T17:46:33.935+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:35.089+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:36.725+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:36.756+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:36.792+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:36.827+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:36.841+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:36.980+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:40.740+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:42.529+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:43.975+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:45.129+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:46.776+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:46.795+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:46.830+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:46.865+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:46.877+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:47.014+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:50.740+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:46:50.780+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:52.568+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:54.013+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:55.168+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:56.814+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:56.832+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:56.865+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:56.905+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:56.917+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:46:57.054+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:00.819+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:02.602+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:03.938+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:47:03.938+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:47:03.939+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:47:03.939+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:47:04.065+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:05.202+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:06.853+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:06.871+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:06.898+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:06.946+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:06.961+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:07.086+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:10.933+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:12.641+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:14.105+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:15.236+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:16.887+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:16.910+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:16.938+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:16.983+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:17.000+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:17.121+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:17.248+08:00 [05936 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x0000000012cb58b8, h:-1, <TCP '0.0.0.0:0'>, <TCP '0.0.0.0:0'>>, error: class Vmacore::TimeoutException(Operation timed out)2014-12-18T17:47:20.972+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:22.680+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:24.143+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:25.281+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:26.925+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:26.949+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:26.976+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:27.022+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:27.034+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:27.154+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:31.006+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:32.720+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:34.144+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:47:34.178+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:35.320+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:36.960+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:36.988+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:37.011+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:37.036+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:47:37.057+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:37.075+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:37.188+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:41.045+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:42.754+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:44.216+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:45.353+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:46.999+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:47.027+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:47.045+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:47.091+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:47.115+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:47.222+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:51.081+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:52.790+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:53.960+08:00 [01444 info 'commonvpxLro' opID=9A386B63-00007954-15] [VpxLRO] -- BEGIN task-internal-195766 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T17:47:53.961+08:00 [01444 info 'commonvpxLro' opID=9A386B63-00007954-15] [VpxLRO] -- FINISH task-internal-195766 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T17:47:53.961+08:00 [04740 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x000000000ead2978, h:5080, <TCP '[::1]:8085'>, <TCP '[::1]:65299'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T17:47:54.252+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:55.389+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:57.038+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:57.068+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:57.080+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:57.125+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:57.152+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:47:57.251+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:00.413+08:00 [05924 warning 'Proxy Req 89345'] The client closed the stream with a request not fully forwarded.2014-12-18T17:48:01.122+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:02.837+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:03.938+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:48:03.938+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:48:03.938+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:48:03.938+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:48:04.290+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:05.431+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:07.078+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:07.109+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:07.119+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:07.163+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:07.194+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:07.289+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:11.162+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:12.876+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:14.328+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:15.468+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:17.078+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:48:17.109+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:48:17.110+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:17.119+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:48:17.147+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:17.156+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:17.163+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:48:17.196+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:17.230+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:17.289+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:48:17.324+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:21.202+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:22.911+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:24.364+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:25.508+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:27.147+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:27.187+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:27.196+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:27.233+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:27.267+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:27.356+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:31.238+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:32.911+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:48:32.946+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:33.998+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:34.401+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:35.543+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:37.184+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:37.226+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:37.233+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:37.272+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:37.300+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:37.389+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:41.278+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:42.981+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:43.999+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:48:44.032+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:44.435+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:45.580+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:47.217+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:47.266+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:47.271+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:47.309+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:47.337+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:47.425+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:51.315+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:53.018+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:54.068+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:54.469+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:55.616+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:57.251+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:57.306+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:57.311+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:57.345+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:57.373+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:48:57.457+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:00.426+08:00 [05924 warning 'Proxy Req 89351'] The client closed the stream with a request not fully forwarded.2014-12-18T17:49:01.355+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:03.057+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:03.939+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:49:03.939+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:49:03.939+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:49:03.939+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:49:04.104+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:04.504+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:05.617+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:49:05.652+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:07.286+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:07.343+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:07.350+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:07.378+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:07.406+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:07.498+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:11.388+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:13.096+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:14.143+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:14.542+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:15.686+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:17.324+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:17.383+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:17.389+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:17.416+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:17.446+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:17.538+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:21.428+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:23.131+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:24.176+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:24.577+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:25.725+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:27.359+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:27.416+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:27.422+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:27.455+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:27.501+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:27.576+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:31.428+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:49:31.467+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:33.171+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:34.210+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:34.632+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:35.763+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:37.398+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:37.450+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:37.457+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:37.496+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:37.541+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:37.610+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:41.501+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:43.204+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:44.248+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:44.666+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:45.810+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:47.432+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:47.495+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:47.506+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:47.534+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:47.580+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:47.643+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:51.540+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:53.237+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:54.283+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:54.700+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:55.849+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:57.471+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:57.535+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:57.546+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:57.575+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:57.614+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:49:57.678+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:00.401+08:00 [05964 info 'commonvpxLro' opID=01C0A319-0000C0F1-c6] [VpxLRO] -- BEGIN task-internal-195767 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- a40802c5-bb73-9f71-dd9f-3025d9066c8b(52688827-bbbd-4a2f-409a-49bdfccce6ef)2014-12-18T17:50:00.402+08:00 [04488 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x00000000155104a8, h:10288, <TCP '[::1]:8085'>, <TCP '[::1]:65449'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T17:50:00.402+08:00 [05964 info 'commonvpxLro' opID=01C0A319-0000C0F1-c6] [VpxLRO] -- FINISH task-internal-195767 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T17:50:01.580+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:03.270+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:03.939+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:50:03.939+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:50:03.939+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:50:03.939+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:50:04.327+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:04.728+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:05.882+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:07.506+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:07.568+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:07.588+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:07.614+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:07.648+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:07.711+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:11.619+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:13.305+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:14.367+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:14.729+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:50:14.762+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:15.922+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:17.544+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:17.602+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:17.624+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:17.647+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:17.648+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:50:17.681+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:17.744+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:21.653+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:23.344+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:24.401+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:24.801+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:25.961+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:27.579+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:27.636+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:27.665+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:27.681+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:27.716+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:27.772+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:31.691+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:33.378+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:34.441+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:34.834+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:36.000+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:37.617+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:37.674+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:37.705+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:37.721+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:37.749+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:37.812+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:41.725+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:43.424+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:44.475+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:44.874+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:46.046+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:47.655+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:47.708+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:47.743+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:47.764+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:47.787+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:47.845+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:51.763+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:53.456+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:54.509+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:54.902+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:56.079+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:57.655+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:50:57.690+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:57.708+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:50:57.742+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:57.743+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:50:57.764+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:50:57.780+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:57.802+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:57.825+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:50:57.845+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:50:57.879+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:00.423+08:00 [05924 warning 'Proxy Req 89364'] The client closed the stream with a request not fully forwarded.2014-12-18T17:51:01.803+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:03.496+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:03.940+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:51:03.940+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:51:03.940+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:51:03.940+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:51:04.547+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:04.934+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:06.116+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:07.728+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:07.786+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:07.814+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:07.842+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:07.861+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:07.916+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:11.837+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:13.496+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:51:13.533+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:14.581+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:14.968+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:16.150+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:17.763+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:17.825+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:17.854+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:17.884+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:17.900+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:17.952+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:21.878+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:23.575+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:24.582+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:51:24.618+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:25.003+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:26.186+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:27.803+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:27.860+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:27.888+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:27.921+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:27.938+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:27.985+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:31.916+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:33.617+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:34.654+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:35.046+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:36.219+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:37.840+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:37.895+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:37.922+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:37.954+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:37.979+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:38.020+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:41.956+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:43.653+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:44.690+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:45.080+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:46.219+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:51:46.256+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:47.881+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:47.930+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:47.955+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:47.989+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:48.016+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:48.056+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:51.996+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:53.693+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:54.732+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:55.113+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:56.296+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:57.921+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:57.967+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:57.996+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:58.023+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:58.052+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:51:58.090+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:00.436+08:00 [05924 warning 'Proxy Req 89370'] The client closed the stream with a request not fully forwarded.2014-12-18T17:52:02.029+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:03.743+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:03.940+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:52:03.940+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:52:03.940+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:52:03.940+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:52:04.771+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:05.164+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:06.352+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:07.959+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:07.999+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:08.028+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:08.056+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:08.085+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:08.119+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:10.606+08:00 [02812 info 'commonvpxLro' opID=HB-host-1617@92449-247f2752] [VpxLRO] -- BEGIN task-internal-195768 -- host-1617 -- VpxdInvtHostSyncHostLRO.Synchronize -- 2014-12-18T17:52:10.607+08:00 [02812 info 'vpxdvpxdInvtHostCnx' opID=HB-host-1617@92449-247f2752] [VpxdHostSync] Synchronizing host: host-1617 (172.32.1.206, 172.32.1.206)2014-12-18T17:52:10.632+08:00 [02812 info 'vpxdvpxdVmomi' opID=HB-host-1617@92449-247f2752] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.retrieveChanges)2014-12-18T17:52:10.635+08:00 [02812 info 'vpxdvpxdVmomi' opID=HB-host-1617@92449-247f2752] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vmodl.query.PropertyCollector.createFilter)2014-12-18T17:52:10.636+08:00 [05964 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:52:10.751+08:00 [05964 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:52:10.756+08:00 [05964 info 'vpxdvpxdVmomi'] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vmodl.query.PropertyCollector.waitForUpdates)2014-12-18T17:52:10.760+08:00 [02812 info 'vpxdvpxdVmomi' opID=HB-host-1617@92449-247f2752] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vmodl.query.PropertyCollector.Filter.destroy)2014-12-18T17:52:10.763+08:00 [02812 info 'vpxdvpxdVmomi' opID=HB-host-1617@92449-247f2752] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vmodl.query.PropertyCollector.cancelWaitForUpdates)2014-12-18T17:52:10.764+08:00 [02812 info 'vpxdvpxdInvtHostCnx' opID=HB-host-1617@92449-247f2752] [VpxdHostSync] Retrieved host update to 92449 for host-16172014-12-18T17:52:10.805+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:12.030+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:52:12.067+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:13.783+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:14.806+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:15.215+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:16.388+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:17.999+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:18.038+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:18.066+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:18.090+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:18.119+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:18.153+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:20.805+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:52:20.843+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:22.102+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:23.820+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:24.861+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:25.255+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:26.427+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:28.033+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:28.073+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:28.102+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:28.131+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:28.164+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:28.187+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:30.879+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:32.140+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:33.856+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:34.901+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:35.294+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:36.466+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:38.072+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:38.105+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:38.146+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:38.169+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:38.198+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:38.220+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:40.912+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:42.180+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:43.894+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:44.941+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:45.329+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:46.501+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:48.106+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:48.139+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:48.180+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:48.210+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:48.237+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:48.255+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:50.951+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:52.226+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:53.939+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:53.955+08:00 [05944 info 'commonvpxLro' opID=9A386B63-00007956-1a] [VpxLRO] -- BEGIN task-internal-195769 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T17:52:53.955+08:00 [05128 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x0000000015c1c448, h:5300, <TCP '[::1]:8085'>, <TCP '[::1]:49294'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T17:52:53.956+08:00 [05944 info 'commonvpxLro' opID=9A386B63-00007956-1a] [VpxLRO] -- FINISH task-internal-195769 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T17:52:54.975+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:55.329+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:52:55.363+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:56.535+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:58.146+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:58.174+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:58.213+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:58.238+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:52:58.244+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:58.272+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:52:58.294+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:00.448+08:00 [05924 warning 'Proxy Req 89376'] The client closed the stream with a request not fully forwarded.2014-12-18T17:53:00.986+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:02.264+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:03.948+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:53:03.949+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:53:03.949+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:53:03.949+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:53:03.980+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:05.015+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:05.396+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:06.574+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:08.186+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:08.214+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:08.249+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:08.277+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:08.309+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:08.328+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:11.025+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:12.305+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:14.019+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:15.053+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:15.432+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:16.612+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:18.229+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:18.252+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:18.327+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:18.350+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:18.356+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:18.367+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:21.064+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:22.344+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:24.053+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:25.099+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:25.470+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:26.651+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:28.281+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:28.297+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:28.362+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:28.394+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:28.401+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:28.408+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:31.099+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:32.383+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:34.089+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:35.136+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:35.508+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:36.700+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:38.282+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:53:38.298+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:53:38.320+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:38.342+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:38.363+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:53:38.395+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:53:38.405+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:38.409+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:53:38.445+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:38.457+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:38.458+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:41.137+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:42.420+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:44.124+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:45.176+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:45.571+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:46.740+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:48.359+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:48.379+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:48.438+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:48.479+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:48.496+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:48.501+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:51.180+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:52.454+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:54.124+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:53:54.162+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:55.208+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:55.604+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:56.781+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:58.398+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:58.415+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:58.472+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:58.519+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:58.535+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:53:58.541+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:00.464+08:00 [05924 warning 'Proxy Req 89382'] The client closed the stream with a request not fully forwarded.2014-12-18T17:54:01.219+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:02.499+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:03.948+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:54:03.948+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:54:03.948+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:54:03.948+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:54:04.198+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:05.208+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:54:05.243+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:05.641+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:06.815+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:08.447+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:08.452+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:08.506+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:08.552+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:08.601+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:08.609+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:11.254+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:12.533+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:14.238+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:15.282+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:15.678+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:16.854+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:18.492+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:18.500+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:18.552+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:18.586+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:18.637+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:18.649+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:21.294+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:22.571+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:24.277+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:25.322+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:25.714+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:26.855+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:54:26.914+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:28.539+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:28.550+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:28.584+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:28.619+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:28.674+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:28.688+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:31.329+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:32.609+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:34.340+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:35.375+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:35.752+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:36.951+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:38.580+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:38.613+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:38.632+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:38.689+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:38.729+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:38.735+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:41.367+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:42.654+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:44.379+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:45.408+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:45.796+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:46.991+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:48.619+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:48.649+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:48.665+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:48.723+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:48.769+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:48.774+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:51.402+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:52.655+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:54:52.693+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:54.414+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:55.442+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:55.831+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:57.031+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:58.655+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:58.688+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:58.698+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:58.756+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:58.812+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:54:58.818+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:00.398+08:00 [05224 info 'commonvpxLro' opID=01C0A319-0000C0F3-67] [VpxLRO] -- BEGIN task-internal-195770 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- a40802c5-bb73-9f71-dd9f-3025d9066c8b(52688827-bbbd-4a2f-409a-49bdfccce6ef)2014-12-18T17:55:00.400+08:00 [05224 info 'commonvpxLro' opID=01C0A319-0000C0F3-67] [VpxLRO] -- FINISH task-internal-195770 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T17:55:00.400+08:00 [02976 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x0000000015103588, h:10340, <TCP '[::1]:8085'>, <TCP '[::1]:49440'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T17:55:01.402+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:55:01.436+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:02.728+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:03.948+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:55:03.948+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:55:03.948+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:55:03.948+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:55:04.453+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:05.477+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:05.864+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:07.071+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:08.693+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:08.727+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:08.733+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:08.790+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:08.853+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:08.859+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:11.469+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:12.761+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:14.498+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:15.544+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:15.899+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:17.104+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:18.726+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:18.766+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:18.772+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:18.823+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:18.891+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:18.897+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:21.504+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:22.802+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:24.532+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:25.579+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:25.933+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:27.142+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:28.761+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:28.801+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:28.813+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:28.858+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:28.926+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:28.933+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:31.538+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:32.841+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:34.566+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:35.611+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:35.933+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:55:35.965+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:37.177+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:38.799+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:38.840+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:38.851+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:38.896+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:38.926+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:55:38.965+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:38.971+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:41.578+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:42.875+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:44.600+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:45.655+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:45.994+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:47.211+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:48.834+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:48.874+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:48.891+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:48.931+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:49.000+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:49.006+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:51.610+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:52.908+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:53.460+08:00 [05192 info 'commonvpxLro' opID=9A386B63-00007958-62] [VpxLRO] -- BEGIN task-internal-195771 --  -- vmodl.query.PropertyCollector.retrieveContents -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T17:55:53.461+08:00 [05192 info 'commonvpxLro' opID=9A386B63-00007958-62] [VpxLRO] -- FINISH task-internal-195771 --  -- vmodl.query.PropertyCollector.retrieveContents -- 2014-12-18T17:55:53.466+08:00 [05192 info 'commonvpxLro' opID=9A386B63-00007959-ea] [VpxLRO] -- BEGIN task-internal-195772 --  -- vmodl.query.PropertyCollector.retrieveContents -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T17:55:53.466+08:00 [05192 info 'commonvpxLro' opID=9A386B63-00007959-ea] [VpxLRO] -- FINISH task-internal-195772 --  -- vmodl.query.PropertyCollector.retrieveContents -- 2014-12-18T17:55:53.491+08:00 [05184 info 'commonvpxLro' opID=9A386B63-0000795A-32] [VpxLRO] -- BEGIN task-internal-195773 --  -- vim.alarm.AlarmManager.getAlarmActionsEnabled -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T17:55:53.491+08:00 [05184 info 'commonvpxLro' opID=9A386B63-0000795A-32] [VpxLRO] -- FINISH task-internal-195773 --  -- vim.alarm.AlarmManager.getAlarmActionsEnabled -- 2014-12-18T17:55:54.641+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:55.690+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:56.028+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:57.245+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:58.868+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:58.908+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:58.925+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:58.965+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:59.040+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:55:59.051+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:00.416+08:00 [05936 warning 'Proxy Req 89393'] The client closed the stream with a request not fully forwarded.2014-12-18T17:56:01.645+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:02.948+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:03.949+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:56:03.949+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:56:03.949+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:56:03.950+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:56:04.679+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:05.725+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:06.061+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:07.279+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:08.902+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:08.947+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:08.964+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:09.003+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:09.080+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:09.085+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:11.679+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:12.981+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:14.719+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:15.759+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:16.101+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:17.318+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:18.903+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:56:18.941+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:18.948+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:56:18.965+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:56:18.987+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:19.003+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:19.004+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:56:19.039+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:19.088+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:56:19.129+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:19.135+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:21.717+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:23.015+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:24.759+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:25.797+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:26.135+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:27.352+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:28.976+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:29.021+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:29.038+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:29.073+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:29.175+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:29.181+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:29.758+08:00 [05236 info 'commonvpxLro' opID=2b55008d] [VpxLRO] -- BEGIN task-internal-195774 -- host-1617 -- vim.HostSystem.acquireCimServicesTicket -- be00741c-6747-a347-8744-9ad083791e34(52960330-2e01-81d4-0b1a-0ffc0a8a6a79)2014-12-18T17:56:29.768+08:00 [05236 info 'vpxdvpxdVmomi' opID=2b55008d] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vim.HostSystem.acquireCimServicesTicket)2014-12-18T17:56:29.769+08:00 [05236 info 'commonvpxLro' opID=2b55008d] [VpxLRO] -- FINISH task-internal-195774 -- host-1617 -- vim.HostSystem.acquireCimServicesTicket -- 2014-12-18T17:56:31.753+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:33.056+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:34.760+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:56:34.792+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:35.837+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:36.174+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:37.391+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:39.015+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:39.061+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:39.078+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:39.106+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:39.219+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:39.226+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:41.791+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:43.093+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:44.827+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:45.837+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:56:45.870+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:46.202+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:47.426+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:49.054+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:49.100+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:49.117+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:49.140+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:49.261+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:49.278+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:51.826+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:53.129+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:54.865+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:55.908+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:56.236+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:57.462+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:59.088+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:59.133+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:59.160+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:59.182+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:59.298+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:56:59.316+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:00.426+08:00 [05924 warning 'Proxy Req 89399'] The client closed the stream with a request not fully forwarded.2014-12-18T17:57:01.861+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:03.164+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:03.949+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:57:03.949+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:57:03.949+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:57:03.949+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:57:04.905+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:05.947+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:06.275+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:07.463+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:57:07.511+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:09.130+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:09.170+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:09.199+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:09.221+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:09.339+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:09.353+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:11.901+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:13.201+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:14.944+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:15.984+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:16.306+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:17.549+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:19.166+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:19.205+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:19.235+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:19.258+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:19.301+08:00 [05212 info 'commonvpxLro' opID=18981b3] [VpxLRO] -- BEGIN task-internal-195775 -- host-2001 -- vim.HostSystem.acquireCimServicesTicket -- be00741c-6747-a347-8744-9ad083791e34(52960330-2e01-81d4-0b1a-0ffc0a8a6a79)2014-12-18T17:57:19.310+08:00 [05212 info 'vpxdvpxdVmomi' opID=18981b3] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vim.HostSystem.acquireCimServicesTicket)2014-12-18T17:57:19.311+08:00 [05212 info 'commonvpxLro' opID=18981b3] [VpxLRO] -- FINISH task-internal-195775 -- host-2001 -- vim.HostSystem.acquireCimServicesTicket -- 2014-12-18T17:57:19.378+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:19.395+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:21.937+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:23.231+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:24.981+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:26.027+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:26.340+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:27.587+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:29.203+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:29.243+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:29.275+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:29.292+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:29.415+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:29.432+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:31.974+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:33.232+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:57:33.269+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:35.020+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:36.065+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:36.373+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:37.625+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:39.239+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:39.294+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:39.314+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:39.331+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:39.447+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:39.468+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:41.975+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:57:42.008+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:43.309+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:45.060+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:46.105+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:46.408+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:47.662+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:49.286+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:49.338+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:49.355+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:49.373+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:49.493+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:49.519+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:52.047+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:53.350+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:53.953+08:00 [04488 info 'commonvpxLro' opID=9A386B63-0000795B-ac] [VpxLRO] -- BEGIN task-internal-195776 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T17:57:53.954+08:00 [04488 info 'commonvpxLro' opID=9A386B63-0000795B-ac] [VpxLRO] -- FINISH task-internal-195776 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T17:57:53.954+08:00 [05184 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x000000001515f198, h:4664, <TCP '[::1]:8085'>, <TCP '[::1]:49640'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T17:57:55.098+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:56.143+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:56.440+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:57.701+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:59.321+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:59.380+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:59.396+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:59.411+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:59.531+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:57:59.559+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:00.439+08:00 [05924 warning 'Proxy Req 89406'] The client closed the stream with a request not fully forwarded.2014-12-18T17:58:02.085+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:03.387+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:03.950+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:58:03.950+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:58:03.950+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:58:03.950+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:58:05.132+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:06.181+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:06.472+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:07.737+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:09.355+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:09.412+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:09.447+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:09.452+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:09.570+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:09.598+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:10.528+08:00 [05952 info 'commonvpxLro' opID=9A386B63-0000795D-32] [VpxLRO] -- BEGIN task-internal-195777 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T17:58:10.528+08:00 [05952 info 'commonvpxLro' opID=9A386B63-0000795D-32] [VpxLRO] -- FINISH task-internal-195777 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T17:58:10.529+08:00 [05924 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x000000000eacf898, h:10100, <TCP '[::1]:8085'>, <TCP '[::1]:65316'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T17:58:12.135+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:13.425+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:15.171+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:16.221+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:16.472+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:58:16.503+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:17.772+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:19.394+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:19.445+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:19.490+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:19.495+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:19.571+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:58:19.610+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:19.645+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:22.171+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:23.461+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:25.205+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:26.256+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:26.536+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:27.809+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:29.427+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:29.494+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:29.529+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:29.534+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:29.656+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:29.688+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:32.205+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:33.498+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:35.243+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:36.290+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:36.573+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:37.850+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:39.465+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:39.529+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:39.563+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:39.569+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:39.693+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:39.727+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:42.243+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:42.541+08:00 [05100 info 'commonvpxLro' opID=01C0A319-0000C0F5-65] [VpxLRO] -- BEGIN task-internal-195778 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- a40802c5-bb73-9f71-dd9f-3025d9066c8b(52688827-bbbd-4a2f-409a-49bdfccce6ef)2014-12-18T17:58:42.541+08:00 [05100 info 'commonvpxLro' opID=01C0A319-0000C0F5-65] [VpxLRO] -- FINISH task-internal-195778 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T17:58:42.541+08:00 [05224 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x0000000015067f38, h:10336, <TCP '[::1]:8085'>, <TCP '[::1]:65355'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T17:58:43.535+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:45.275+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:46.328+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:46.607+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:47.883+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:49.506+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:49.568+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:49.604+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:49.608+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:49.723+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:49.768+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:52.282+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:53.575+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:55.310+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:56.363+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:56.643+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:57.923+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:59.507+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:58:59.546+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:59.569+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:58:59.603+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:59.605+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:58:59.610+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:58:59.643+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:59.648+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:59.757+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:58:59.769+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:58:59.800+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:02.320+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:03.612+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:03.950+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:59:03.950+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:59:03.950+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:59:03.950+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T17:59:05.348+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:06.402+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:06.677+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:07.956+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:09.580+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:09.643+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:09.681+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:09.686+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:09.796+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:09.836+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:12.355+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:13.654+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:15.349+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:59:15.385+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:16.436+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:16.710+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:17.993+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:19.624+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:19.682+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:19.719+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:19.725+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:19.827+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:19.869+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:22.389+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:23.692+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:25.422+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:26.436+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:59:26.475+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:26.743+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:28.030+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:29.658+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:29.715+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:29.755+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:29.766+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:29.869+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:29.909+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:32.429+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:33.732+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:35.456+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:36.513+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:36.771+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:38.068+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:39.696+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:39.748+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:39.788+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:39.806+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:39.896+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:39.942+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:42.474+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:42.559+08:00 [05924 warning 'Proxy Req 89416'] The client closed the stream with a request not fully forwarded.2014-12-18T17:59:43.775+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:45.503+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:46.548+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:46.801+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:48.069+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T17:59:48.102+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:49.731+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:49.782+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:49.822+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:49.845+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:49.925+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:49.976+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:51.125+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:52.513+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:53.813+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:55.541+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:56.582+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:56.832+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:58.135+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:59.763+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:59.809+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:59.856+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:59.889+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T17:59:59.958+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:00.009+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:00.420+08:00 [05100 info 'commonvpxLro' opID=01C0A319-0000C0F7-c3] [VpxLRO] -- BEGIN task-internal-195779 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- a40802c5-bb73-9f71-dd9f-3025d9066c8b(52688827-bbbd-4a2f-409a-49bdfccce6ef)2014-12-18T18:00:00.421+08:00 [05100 info 'commonvpxLro' opID=01C0A319-0000C0F7-c3] [VpxLRO] -- FINISH task-internal-195779 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T18:00:00.421+08:00 [05192 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x000000000eacfcd8, h:10816, <TCP '[::1]:8085'>, <TCP '[::1]:49785'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T18:00:01.125+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:00:01.158+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:02.553+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:03.850+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:03.951+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T18:00:03.951+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T18:00:03.951+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T18:00:03.951+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T18:00:05.007+08:00 [05252 info 'commonvpxLro' opID=407ee744] [VpxLRO] -- BEGIN task-internal-195780 --  -- vim.SessionManager.GetCurrentSession -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T18:00:05.008+08:00 [05252 info 'commonvpxLro' opID=407ee744] [VpxLRO] -- FINISH task-internal-195780 --  -- vim.SessionManager.GetCurrentSession -- 2014-12-18T18:00:05.012+08:00 [05192 info 'commonvpxLro' opID=1051db87] [VpxLRO] -- BEGIN task-internal-195781 --  -- vim.ServiceDirectory.queryServiceEndpointList -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T18:00:05.015+08:00 [05192 info 'commonvpxLro' opID=1051db87] [VpxLRO] -- FINISH task-internal-195781 --  -- vim.ServiceDirectory.queryServiceEndpointList -- 2014-12-18T18:00:05.019+08:00 [05252 info 'commonvpxLro' opID=57a784ec] [VpxLRO] -- BEGIN task-internal-195782 --  -- vim.LicenseManager.GetLicenseAssignmentManager -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T18:00:05.019+08:00 [05252 info 'commonvpxLro' opID=57a784ec] [VpxLRO] -- FINISH task-internal-195782 --  -- vim.LicenseManager.GetLicenseAssignmentManager -- 2014-12-18T18:00:05.022+08:00 [05100 info 'commonvpxLro' opID=56c6c229] [VpxLRO] -- BEGIN task-internal-195783 --  -- vim.LicenseAssignmentManager.queryAssignedLicenses -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T18:00:05.033+08:00 [05100 info 'commonvpxLro' opID=56c6c229] [VpxLRO] -- FINISH task-internal-195783 --  -- vim.LicenseAssignmentManager.queryAssignedLicenses -- 2014-12-18T18:00:05.099+08:00 [05936 info 'commonvpxLro' opID=467f9402] [VpxLRO] -- BEGIN task-internal-195784 --  -- vim.SessionManager.GetCurrentSession -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T18:00:05.099+08:00 [05936 info 'commonvpxLro' opID=467f9402] [VpxLRO] -- FINISH task-internal-195784 --  -- vim.SessionManager.GetCurrentSession -- 2014-12-18T18:00:05.102+08:00 [05696 info 'commonvpxLro' opID=459de67f] [VpxLRO] -- BEGIN task-internal-195785 --  -- vim.ServiceDirectory.queryServiceEndpointList -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T18:00:05.103+08:00 [05696 info 'commonvpxLro' opID=459de67f] [VpxLRO] -- FINISH task-internal-195785 --  -- vim.ServiceDirectory.queryServiceEndpointList -- 2014-12-18T18:00:05.108+08:00 [05696 info 'commonvpxLro' opID=306ec92d] [VpxLRO] -- BEGIN task-internal-195786 --  -- vim.SessionManager.acquireSessionTicket -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T18:00:05.155+08:00 [05696 info 'commonvpxLro' opID=306ec92d] [VpxLRO] -- FINISH task-internal-195786 --  -- vim.SessionManager.acquireSessionTicket -- 2014-12-18T18:00:05.246+08:00 [05696 info 'commonvpxLro' opID=28a2d1cd] [VpxLRO] -- BEGIN task-internal-195787 --  -- vim.SessionManager.GetCurrentSession -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T18:00:05.246+08:00 [05696 info 'commonvpxLro' opID=28a2d1cd] [VpxLRO] -- FINISH task-internal-195787 --  -- vim.SessionManager.GetCurrentSession -- 2014-12-18T18:00:05.250+08:00 [05128 info 'commonvpxLro' opID=272048cc] [VpxLRO] -- BEGIN task-internal-195788 --  -- vim.ServiceDirectory.queryServiceEndpointList -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T18:00:05.251+08:00 [05128 info 'commonvpxLro' opID=272048cc] [VpxLRO] -- FINISH task-internal-195788 --  -- vim.ServiceDirectory.queryServiceEndpointList -- 2014-12-18T18:00:05.255+08:00 [05696 info 'commonvpxLro' opID=30e379d3] [VpxLRO] -- BEGIN task-internal-195789 --  -- vim.SessionManager.acquireSessionTicket -- abd107f1-14a2-a1f8-ed86-c58baf940966(525a3042-9555-3c13-0af9-fe06ada4a40f)2014-12-18T18:00:05.306+08:00 [05696 info 'commonvpxLro' opID=30e379d3] [VpxLRO] -- FINISH task-internal-195789 --  -- vim.SessionManager.acquireSessionTicket -- 2014-12-18T18:00:05.576+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:06.622+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:06.866+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:08.176+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:09.805+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:09.843+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:09.889+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:09.924+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:09.992+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:10.050+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:11.198+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:12.586+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:13.850+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:00:13.883+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:15.620+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:16.654+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:16.901+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:18.208+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:19.843+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:19.884+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:19.929+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:19.963+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:20.032+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:20.089+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:21.232+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:22.588+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:00:22.626+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:23.923+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:25.654+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:26.689+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:26.940+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:28.242+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:29.877+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:29.923+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:29.969+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:30.008+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:30.069+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:30.123+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:32.008+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:32.665+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:33.956+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:35.687+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:36.722+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:36.968+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:38.277+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:39.916+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:39.962+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:40.013+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:40.047+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:40.110+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:40.163+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:42.044+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:42.701+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:43.998+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:45.729+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:46.752+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:46.998+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:48.312+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:49.952+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:50.009+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:50.050+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:50.078+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:50.146+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:50.197+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:52.077+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:52.735+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:54.032+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:55.763+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:56.786+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:56.999+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:00:57.031+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:58.352+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:00:59.986+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:00.058+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:00.089+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:00.117+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:00.147+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:01:00.180+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:00.237+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:00.434+08:00 [05924 warning 'Proxy Req 89425'] The client closed the stream with a request not fully forwarded.2014-12-18T18:01:02.116+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:02.773+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:03.951+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T18:01:03.952+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T18:01:03.952+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T18:01:03.952+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T18:01:04.071+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:05.802+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:06.823+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:07.064+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:08.390+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:10.024+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:10.092+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:10.125+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:10.154+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:10.219+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:10.275+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:12.154+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:12.825+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:14.108+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:15.842+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:16.857+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:17.098+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:18.424+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:20.059+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:20.127+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:20.161+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:20.190+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:20.256+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:20.310+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:22.194+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:22.861+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:24.149+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:25.878+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:26.892+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:27.129+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:28.461+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:30.095+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:30.161+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:30.199+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:30.230+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:30.292+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:30.353+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:32.230+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:32.897+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:34.187+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:35.914+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:36.926+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:37.160+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:38.500+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:40.096+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:01:40.135+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:40.161+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:01:40.198+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:40.199+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:01:40.230+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:01:40.245+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:40.272+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:40.326+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:40.353+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:01:40.386+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:42.266+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:42.931+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:44.226+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:45.947+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:46.963+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:47.194+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:48.537+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:50.177+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:50.235+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:50.287+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:50.315+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:50.360+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:50.423+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:52.302+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:52.990+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:54.264+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:55.948+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:01:56.018+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:57.000+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:57.223+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:01:58.576+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:00.217+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:00.269+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:00.320+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:00.354+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:00.393+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:00.457+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:02.337+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:03.022+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:03.952+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.210, vpxapi.VpxaService.fetchQuickStats)2014-12-18T18:02:03.952+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.206, vpxapi.VpxaService.fetchQuickStats)2014-12-18T18:02:03.953+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.207, vpxapi.VpxaService.fetchQuickStats)2014-12-18T18:02:03.954+08:00 [03244 info 'vpxdvpxdVmomi' opID=SWI-d3d52ad] [ClientAdapterBase::InvokeOnSoap] Invoke done (172.32.1.205, vpxapi.VpxaService.fetchQuickStats)2014-12-18T18:02:04.297+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:06.063+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:07.001+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:02:07.034+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:07.256+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:08.615+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:10.251+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:10.303+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:10.354+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:10.388+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:10.426+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:10.492+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:12.377+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:13.055+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:14.331+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:16.108+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:17.071+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:17.288+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:18.654+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:20.284+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:20.340+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:20.387+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:20.421+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:20.461+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:20.524+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:22.415+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:23.091+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:24.371+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:26.147+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:27.113+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:27.325+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:28.655+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:02:28.690+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:30.324+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:30.370+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:30.419+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:30.453+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:30.495+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:30.557+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:32.450+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:33.124+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:34.405+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:36.181+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:37.146+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:37.362+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:38.730+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:40.362+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:40.414+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:40.455+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:40.488+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:40.528+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:40.596+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:42.451+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:02:42.487+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:43.159+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:44.441+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:46.215+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:47.179+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:47.397+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:48.769+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:50.409+08:00 [05204 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:50.447+08:00 [05948 error 'Default' opID=SWI-5a554acd] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:50.493+08:00 [02964 error 'Default' opID=SWI-407db688] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:50.532+08:00 [05960 error 'Default' opID=SWI-4fdf4cb8] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:50.563+08:00 [05240 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:50.627+08:00 [05956 error 'Default' opID=SWI-74ea80ea] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:52.523+08:00 [03648 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:53.197+08:00 [02812 error 'Default' opID=HB-host-1617@92449-247f2752] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:53.946+08:00 [05936 info 'commonvpxLro' opID=9A386B63-0000795F-76] [VpxLRO] -- BEGIN task-internal-195790 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 28b21e9e-89f6-ed4b-4fab-8c8caff99f63(526f96d3-c036-a9f2-02d5-a32e6ec73b28)2014-12-18T18:02:53.947+08:00 [05936 info 'commonvpxLro' opID=9A386B63-0000795F-76] [VpxLRO] -- FINISH task-internal-195790 --  -- vmodl.query.PropertyCollector.cancelWaitForUpdates -- 2014-12-18T18:02:53.947+08:00 [05944 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <io_obj p:0x0000000015103478, h:10136, <TCP '[::1]:8085'>, <TCP '[::1]:49984'>>, error: class Vmacore::SystemException(您的主机中的软件中止了一个已建立的连接。)2014-12-18T18:02:54.441+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain database connection. Retrying...2014-12-18T18:02:54.483+08:00 [04308 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:56.248+08:00 [05368 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:57.215+08:00 [04740 error 'Default'] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:57.430+08:00 [05648 error 'Default' opID=HB-host-2001@115456-5b29654f] [Vdb::GetConnection] Failed to obtain connection: HY000:280012014-12-18T18:02:58.807+08:00 [02804 error 'Default' opID=HB-host-9@650536-24f55e4d] [Vdb::GetConnection] Failed to obtain connection: HY000:28001
        在错误日志中可以清晰地看到 从12月18日下午 17:40 之后,数据库用户突然生效,vCenter不能连接而出现很多报错;
        12月19日上午,重新VMware vCenter所在的操作系统后,出现了很多无法正常建立连接的错误:
Section for VMware VirtualCenter, pid=6084, version=5.5.0, build=1750787, option=Release------ In-memory logs start --------mem> 2014-12-19T11:26:58.464+08:00 [06116 info 'Hooks'] Hooks Initialized------ In-memory logs end   --------2014-12-19T11:27:00.642+08:00 [06116 info 'Default'] Logging uses fast path: true2014-12-19T11:27:01.202+08:00 [06116 info 'Libs'] VThreadBase detected multiple threads.2014-12-19T11:27:01.796+08:00 [06116 info 'Default'] Handling bora/lib logs with VmaCore facilities2014-12-19T11:27:02.488+08:00 [06116 info 'Default'] Initialized channel manager2014-12-19T11:27:16.182+08:00 [06116 info 'Default'] Current working directory: C:\Windows\system322014-12-19T11:27:20.307+08:00 [06116 info 'Default'] ThreadPool windowsStackImmediateCommit = true2014-12-19T11:27:23.439+08:00 [02684 info 'ThreadPool'] Thread enlisted2014-12-19T11:27:23.442+08:00 [02692 info 'ThreadPool'] Thread enlisted2014-12-19T11:27:23.444+08:00 [06116 info 'ThreadPool'] Thread pool on asio: Min Io, Max Io, Min Task, Max Task, Max Concurency: 2, 200, 2, 90, 21474836472014-12-19T11:27:24.153+08:00 [06116 info 'ThreadPool'] Thread enlisted2014-12-19T11:27:25.296+08:00 [06116 info 'Default'] Log path: C:\ProgramData\VMware\VMware VirtualCenter\Logs2014-12-19T11:27:23.450+08:00 [02744 info 'ThreadPool'] Thread enlisted2014-12-19T11:27:23.458+08:00 [02688 info 'ThreadPool'] Thread enlisted2014-12-19T11:27:27.143+08:00 [06116 info 'Default'] Initializing SSL2014-12-19T11:27:47.990+08:00 [06116 info 'Default'] Vmacore::InitSSL: handshakeTimeoutUs = 1200000002014-12-19T11:27:49.325+08:00 [05360 info 'ThreadPool'] Thread enlisted2014-12-19T11:27:51.825+08:00 [06116 info 'Default'] Starting VMware VirtualCenter 5.5.0 build-17507872014-12-19T11:27:51.829+08:00 [06116 info 'Default'] Log directory: C:\ProgramData\VMware\VMware VirtualCenter\Logs.2014-12-19T11:27:51.836+08:00 [06116 info 'vpxdvpxdMain'] Account name: SYSTEM2014-12-19T11:27:51.840+08:00 [06116 info 'win32vpxdOsLayer_win32'] Total virtual memory available for the process 8589934464 KB2014-12-19T11:27:51.846+08:00 [06116 info 'win32vpxdOsLayer_win32'] [VpxOsLayer] Enabled low-frag process heap.--> 2014-12-19T11:27:51.854+08:00 [06116 info 'win32vpxdOsLayer_win32'] [VpxOsLayer] Enabled low-frag crt heap.--> 2014-12-19T11:27:52.016+08:00 [06116 info 'commonvpxLro'] [VpxLRO] 640 max LROs2014-12-19T11:27:52.024+08:00 [06116 info 'commonvpxLro'] [VpxLRO] 12 reserved internal LROs2014-12-19T11:27:52.029+08:00 [06116 info 'commonvpxLro'] [VpxLRO] 12 reserved blocker LROs2014-12-19T11:27:52.036+08:00 [06116 info 'commonvpxLro'] [VpxLRO] 12 reserved short LROs2014-12-19T11:27:52.041+08:00 [06116 info 'commonvpxLro'] [VpxLRO] 8 reserved long LROs2014-12-19T11:27:52.048+08:00 [06116 info 'commonvpxLro'] [VpxLRO] 600-second completed task lifetime2014-12-19T11:27:52.053+08:00 [06116 info 'commonvpxLro'] [VpxLRO] 60-second minimum completed task lifetime2014-12-19T11:27:52.059+08:00 [06116 info 'commonvpxLro'] [VpxLRO] 200 maximum completed tasks2014-12-19T11:27:52.064+08:00 [06116 info 'commonvpxLro'] [VpxLRO] 600-second unregistered task lifetime2014-12-19T11:27:52.298+08:00 [06116 info 'utilvpxdVdb'] Registry Item DB 5 value is '50'2014-12-19T11:27:52.304+08:00 [06116 info 'utilvpxdVdb'] [VpxdVdb::SetDBType] Logging in to DSN: vmware-oracle with username vmware2014-12-19T11:28:03.913+08:00 [02692 warning 'VpxProfiler' opID=SWI-41a7] VpxUtil_InvokeWithOpId [TotalTime] took 12006 ms2014-12-19T11:28:15.919+08:00 [02744 warning 'VpxProfiler' opID=SWI-4431b782] VpxUtil_InvokeWithOpId [TotalTime] took 12005 ms2014-12-19T11:28:27.964+08:00 [02684 warning 'VpxProfiler' opID=SWI-6058ed8] VpxUtil_InvokeWithOpId [TotalTime] took 12042 ms2014-12-19T11:28:39.977+08:00 [02688 warning 'VpxProfiler' opID=SWI-56f32f43] VpxUtil_InvokeWithOpId [TotalTime] took 12002 ms2014-12-19T11:28:51.981+08:00 [02744 warning 'VpxProfiler' opID=SWI-31169898] VpxUtil_InvokeWithOpId [TotalTime] took 12002 ms2014-12-19T11:29:03.983+08:00 [02692 warning 'VpxProfiler' opID=SWI-6a5d128c] VpxUtil_InvokeWithOpId [TotalTime] took 12002 ms2014-12-19T11:29:15.986+08:00 [02744 warning 'VpxProfiler' opID=SWI-6d7d4b3] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:29:27.987+08:00 [02692 warning 'VpxProfiler' opID=SWI-55e83917] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:29:39.988+08:00 [02744 warning 'VpxProfiler' opID=SWI-3113c398] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:29:51.988+08:00 [02688 warning 'VpxProfiler' opID=SWI-35702e2f] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:30:03.989+08:00 [02684 warning 'VpxProfiler' opID=SWI-4b63962d] VpxUtil_InvokeWithOpId [TotalTime] took 12000 ms2014-12-19T11:30:15.990+08:00 [02688 warning 'VpxProfiler' opID=SWI-6c4f3258] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:30:27.990+08:00 [02684 warning 'VpxProfiler' opID=SWI-bc5816b] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:30:39.992+08:00 [02692 warning 'VpxProfiler' opID=SWI-353f7788] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:30:51.997+08:00 [02684 warning 'VpxProfiler' opID=SWI-74856499] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:31:03.997+08:00 [02688 warning 'VpxProfiler' opID=SWI-21980f48] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:31:15.998+08:00 [02744 warning 'VpxProfiler' opID=SWI-5e37ee62] VpxUtil_InvokeWithOpId [TotalTime] took 12000 ms2014-12-19T11:31:27.999+08:00 [02688 warning 'VpxProfiler' opID=SWI-50fa4cf3] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:31:40.000+08:00 [02692 warning 'VpxProfiler' opID=SWI-7eda5023] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:31:52.001+08:00 [02684 warning 'VpxProfiler' opID=SWI-1f9ef85f] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:32:04.002+08:00 [02744 warning 'VpxProfiler' opID=SWI-5c8022d1] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:32:16.003+08:00 [02684 warning 'VpxProfiler' opID=SWI-5364f5ed] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:32:28.003+08:00 [02744 warning 'VpxProfiler' opID=SWI-50d9680c] VpxUtil_InvokeWithOpId [TotalTime] took 12000 ms2014-12-19T11:32:40.005+08:00 [02684 warning 'VpxProfiler' opID=SWI-22e82902] VpxUtil_InvokeWithOpId [TotalTime] took 12002 ms2014-12-19T11:32:52.006+08:00 [02744 warning 'VpxProfiler' opID=SWI-621c8039] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms2014-12-19T11:33:04.006+08:00 [02684 warning 'VpxProfiler' opID=SWI-1e6f6484] VpxUtil_InvokeWithOpId [TotalTime] took 12001 ms



      查询数据库中vmware用户状态信息如下:

        这个就是由于oracle 11g 初始化的密码有效期为180天,锁定用户错误登录次数为10次,于是昨天晚上的时候突然到期,造成vCenter不能连接数据库,进而vCenter服务器无法重新启动,VMware Client也无法连接到vCenter。

       于是采用下面的步骤解决和处理:
1.确认用户当前状态:
select USERNAME,ACCOUNT_STATUS,EXPIRY_DATE,LOCK_DATE,PROFILE from  dba_users where USERNAME='VMWARE';

2.确认用户相关状态后,查询对应口令文件状态设置:
 select RESOURCE_NAME,LIMIT from dba_profiles where PROFILE='DEFAULT';

将密码有效期由默认的180天该成为“无限制”:
ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;

将尝试登录失败次数由默认的10次修改成“无限制”:
 ALTER PROFILE DEFAULT LIMIT FAILED_LOGIN_ATTEMPTS UNLIMITED;

再次确认口令文件中的状态:
 select RESOURCE_NAME,LIMIT from dba_profiles where PROFILE='DEFAULT';
注:在实际生产环境中,使用Oracle 11gR2数据库时,在Oracle安装完毕后,就要使用该步骤将两个参数修改,以免在后续使用中出现问题。

       3.修改用户状态,并重启系统:
如果知道原有VMware原来的数据库用户密码,使用下面的命令修改:
 alter user vmware identified by oracle account unlock; 

修改后确认用户状态:
select USERNAME,ACCOUNT_STATUS,EXPIRY_DATE,LOCK_DATE,PROFILE from  dba_users where USERNAME='VMWARE';

      用户状态正常后,通过sqlplus和ODBC数据库连接确认使用修改后的用户名和密码可以顺利连接到Oracle数据库。

      重启操作系统,确认数据库状态和vCenter服务的启动状况,本次故障通过上面的处理过程,vCenter各方面恢复正常。

      三、vCenter数据库用户密码修改方法
      但如果忘记了之前的vCenter数据库用户密码,或者不能确认vCenter的数据库用户密码,就要对vCenter的数据库用户密码进行重置。
vCenter的数据库连接密码,并不是在某个配置中间中可以直接修改,但VMware提供的vpxd命令进行修改。

       如果oracle数据库的账号密码发生了变更,那么连接数据的客户端vCenter Server也得相应更改,不然会出现在vCenter上ODBC数据源测试连接数据库成功,而数据库所在服务器日志显示客户端sa账号登陆身份验证错误,从而导致vCenter Server的VMware VirtualCenter Server服务无法启动,vclient登陆vCenter失败的状况。

      vCenter数据连接密码丢失解决办法:
      1、以管理员身份登陆vCenter Server服务器 
      2、在命令行下进到C:\Program Files\VMware\Infrastructure\VirtualCenter Server目录(Windows 2008 R2下的默认目录,也可能根据自己安装目录的不同,稍有差异),执行以下操作:vpxd –P <new_password>直接 修改vCenter连接数据的密码。也可以执行:vpxd –p 交互修改密码。如下图所示:


      3、重启VMware VirtualCenter Server等服务,即可通过vclient连接vCenter。







0 0
原创粉丝点击