When we try to connect to the Source machine having Linux from vCenter Converter Standalone, it gives the following error: Unable to query the live Linux source machine
or Unable to query the live source machine
converter-gui.log
YYYY-MM-DDTHH:MM:SS.188+05:30 warning converter-gui[05424] [Originator@6876 sub=vmomi.soapStub[1]] SOAP request returned HTTP failure; <<io_obj p:0x0aa4a938, h:1884, <pipe '\\.\pipe\vmware-converter-server-soap'>, <pipe '\\.\pipe\vmware-converter-server-soap'>>, /converter/sdk>, method: query; code: 500(Internal Server Error)
YYYY-MM-DDT
HH:MM:SS
.188+05:30 error converter-gui[05424] [Originator@6876 sub=wizardController] Cannot query source HW info: Fault cause: converter.fault.SysinfoQueryBadThumbprintFault-->
YYYY-MM-DDT
HH:MM:SS
.192+05:30 info converter-gui[03680] [Originator@6876 sub=SourceSelect] Failed reading SSL thumbprint for host <Source_Linux_VM_IP> from registry.YYYY-MM-DDT
HH:MM:SS
.110+05:30 info converter-gui[00252] [Originator@6876 sub=ThreadPool] Spawning additional worker - allocated: 10, idle: 3YYYY-MM-DDT
HH:MM:SS
.110+05:30 info converter-gui[06804] [Originator@6876 sub=ThreadPool] Entering worker thread loopYYYY-MM-DDT
HH:MM:SS
.511+05:30 warning converter-gui[05424] [Originator@6876 sub=vmomi.soapStub[1]] SOAP request returned HTTP failure; <<io_obj p:0x0d71d400, h:1988, <pipe '\\.\pipe\vmware-converter-server-soap'>, <pipe '\\.\pipe\vmware-converter-server-soap'>>, /converter/sdk>, method: query; code: 500(Internal Server Error)YYYY-MM-DDT
HH:MM:SS
.511+05:30 error converter-gui[05424] [Originator@6876 sub=wizardController] Cannot query source HW info: Fault cause: converter.fault.SysinfoQueryFault
vmware-converter-worker.log:
YYYY-MM-DDT
HH:MM:SS
.186+05:30 warning vmware-converter-worker[02428] [Originator@6876 sub=Default] Converter::Util::SysCommandWrapper::LogResult: Command return code: 249YYYY-MM-DDT
HH:MM:SS
.186+05:30 warning vmware-converter-worker[02428] [Originator@6876 sub=Default] Converter::Util::SysCommandWrapper::LogResult: Command stderr:--> <host_thumbprint>
-->
YYYY-MM-DDT
HH:MM:SS
.186+05:30 error vmware-converter-worker[02428] [Originator@6876 sub=Default] [Converter Agent SysinfoQuery] while trying to execute "C:\Program Files (x86)\VMware\VMware vCenter Converter Standalone\plink.exe -noprompt -stdin-pass-and-key <ConverterPrivateKeyEnd> -P 22 -thumbprint <emptyThumbprint> root@<Source_Linux_VM_IP> file -L /sbin/init" received error code (249) with result:<host_thumbprint>-->
YYYY-MM-DDT
HH:MM:SS
.186+05:30 error vmware-converter-worker[02428] [Originator@6876 sub=Default] [Converter Agent SysinfoQuery] ssh connection to host <Source_Linux_VM_IP> failed because the host thumbprint was different: client: <emptyThumbprint>, host:<host_thumbprint>YYYY-MM-DDT
HH:MM:SS
.186+05:30 error vmware-converter-worker[02428] [Originator@6876 sub=Default] Sysinfo Query failed with error [Converter Agent SysinfoQuery] ssh connection to host <Source_Linux_VM_IP> failed because the host thumbprint was different: client: <emptyThumbprint>, host: <host_thumbprint>
.
.
.YYYY-MM-DDT
HH:MM:SS
.510+05:30 error vmware-converter-worker[05396] [Originator@6876 sub=Default] No disks for volume with id '/dev/rhel/<device_name>' and label ''
VMware vCenter Converter Standalone 6.6
VMware vCenter Converter Standalone 6.4
VMware vCenter Converter Standalone 6.3
This thumbprint error is reported when the converter connects to a new source, it does not know anything about its thumbprint. emptyThumbprint in the logs reported due to the unavailability of the thumbprint. Since it does not match the host thumbprint, an error is generated, and the host thumbprint is returned.
The issue is with below error:
No disks for volume with id '/dev/rhel/<device_name>' and label
This is a known issue with the standalone converter, which is also documented in the vCenter Converter Standalone 6.6 release notes.
When the source machine has more than one mount point, you receive the following error message: "Unable to query the live Linux source machine
"
Converter expects each source file system to have a unique mount point. Having more than one mount point per file system breaks the analysis of volumes and partitions.
To resolve the issue, unmount the additional mountpoints for a disk device, and make sure it only has one mountpoint in the source Linux file system.
No disks for volume with id '/dev/rhel/<device_name>' and label
" in vmware-converter-worker.log
indicates it is the /dev/rhel/<device_name>
device has the multiple mountpoints issue.'/dev/rhel/var':
No disks for volume with id '/dev/rhel/var' and label
--> <volume mountPoint="<mountpoint_1>" blockSizeInBytes="####" capacityInBlocks="####" blocksFree="####" blocksUsed="####" devicePath="/dev/rhel/<device_name>" fileSystemType="xfs" isBootVolume="false" label="">
--> <volume mountPoint="<mountpoint_2>" blockSizeInBytes="####" capacityInBlocks="####" blocksFree="####" blocksUsed="####" devicePath="/dev/rhel/<device_name>" fileSystemType="xfs" isBootVolume="false" label="">
/dev/rhel/var
' has two mountpoints, /var
and /opt/abc/rpm_mount
:--> <volume mountPoint="/var" blockSizeInBytes="4096" capacityInBlocks="5230080" blocksFree="4493612" blocksUsed="736468" devicePath="/dev/rhel/var" fileSystemType="xfs" isBootVolume="false" label="">
--> <volume mountPoint="/opt/abc/rpm_mount" blockSizeInBytes="4096" capacityInBlocks="5230080" blocksFree="4493612" blocksUsed="736468" devicePath="/dev/rhel/var" fileSystemType="xfs" isBootVolume="false" label="">
# df -ah
umount <mountpoint>
/opt/abc/rpm_mount
which is used for other services:umount /opt/abc/rpm_mount
cat /proc/mount
Note:
Warning: Do not unmount the root (/) or boot (/boot) mount points. If any of them are mounted more than once, unmount the other mount point/s