import from vmware provider always failis

Hi. I have created a new vmware provider to connet to my vmware esxi node. But I have this problem. If I choose to import a vm from that provider, the process always fails. But the errror message is generic: "failed to import vm xyz to Data Center Default, Cluster Default" I have tried to import both Linux and Windows Vms without success. I can see that the import phase go on through importing virtual disk and then when the import process comes almost to the end I get the generic error stated above. There is a place where I can see more detailed logs to solve this problem? Thank you

check the logs /var/log/vdsm/import//xxxxx by loging into specific host where the vm import getting, if there is a vcenter time out happened, follow this https://bugzilla.redhat.com/show_bug.cgi?id=1848862 It looks like virt-v2v creates too many HTTP sessions to the VCenter and it results in 503 error in VMware's VCenter services. * Workaround for the HTTP method * I found a workaround to allow VCenter to accept as many sessions as possible you can change the file /etc/vmware-vpx/vpxd.cfg on the VCenter's server and add inside the <vmacore> XML tag the following XML: " <soap> <maxSessionCount>0</maxSessionCount> </soap> " You shouldn't replace all the <vmacore> contents, just add the above lines inside. It will look something like that: " <vmacore> <cacheProperties>true</cacheProperties> <soap> <maxSessionCount>0</maxSessionCount> </soap> <ssl/> <threadPool> <TaskMax>90</TaskMax> <threadNamePrefix>vpxd</threadNamePrefix> </threadPool> </vmacore> "
participants (3)
-
dhanaraj.ramesh@yahoo.com
-
edp@maddalena.it
-
Thomas Hoberg