Description
In environments where VMware vCenter Server is registered as the VM management software, the message below is output and the cloning image is deleted if you delete a VM host from VMware vCenter Server.
| FJSVrcx:INFO:21162:image(version=version):cloning image is lost. | 
For details on the message, refer to "Message number 21162".
Corrective Action
Refer to the server virtualization software manual for how to restore the L-Server template. Next, check whether the following message is output:
| FJSVrcx:INFO:21161:image(version=version):cloning image is detected. | 
If the cloning images were registered in a resource pool, refer to "E.3.6 rcxadm pool" to register each cloning image in a resource pool.
Example Command
| >rcxadm pool register -name ImagePool -resource master_image -type vm_image <RETURN> | 
If the cloning image was being used with an L-Server, refer to "E.3.1 rcxadm lserver" to modify the L-Server. Use the following format when specifying the XML file:
| <?xml version="1.0" encoding="utf-8"?> <Resources> <LServer name="L-Server name"> <ServerImageLink name="cloning_image_name" version="generation" /> </LServer> </Resources> | 
Example
| <?xml version="1.0" encoding="utf-8"?>
<Resources>
  <LServer name="L-Server1">
    <ServerImageLink name="master_image" version="3" />
  </LServer>
</Resources> | 
Example Command
| >rcxadm lserver modify -name L-Server1 -file c:\temp\modify.xml <RETURN> |