<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">
<div>Mark,</div>
<div><br>
</div>
<div>Hopefully you have resolved your stuck VM issue by now (nearly two months later). I came across this email from a google search. I was having the same exact problem with VMs being stuck in migration mode. The trigger to the VM migration issue was that
 I was setting my Host into maintenance mode. It migrated half of the active VMs successfully and the other half were stuck.</div>
<div><br>
</div>
<div>There were two things I had to do to fix all of my stuck VMs:</div>
<div>1. I shut down the host (long enough for oVirt to fence it and notice that it was down). I then powered it on and &quot;confirmed host as rebooted.&quot; This reset the active VM count on the host and turned on my HA VMs on other hosts.</div>
<div>2. For the one VM that was still stuck after a host reboot, I had to login to postgres and set the status to 0 on that VM. This allowed me to shut down the migrating VM and start it back up. (I do not think I would have had to do this step if I did not
 alter the database entry for this VM before rebooting the host.)</div>
<div><br>
</div>
<div>For step 2, I used the methods described here:&nbsp;<a href="https://access.redhat.com/discussions/688043">https://access.redhat.com/discussions/688043</a>&nbsp;and as seen below:</div>
<div>ssh ovirt-engine</div>
<div>su postgres</div>
<div>psql</div>
<div>\connect engine</div>
<div>SELECT vm_guid status FROM vm_static WHERE vm_name='XXXX';</div>
<div>UPDATE vm_dynamic SET status=0 WHERE vm_guid='xxxxxxxx';</div>
<div>UPDATE vm_dynamic SET run_on_vds = null&nbsp; WHERE vm_guid='xxxxxxxx';</div>
<div>\q</div>
<div>(I was then able to shut down the VM)</div>
<div><br>
</div>
<div><span>-- <br>
Andrew Wippler &lt;<a href="andrew.wippler@lancasterbaptist.org&gt;">andrew.wippler@lancasterbaptist.org&gt;</a>&nbsp;| Sr. Systems Administrator | Lancaster Baptist Church</span></div>
<div><br>
</div>
</body>
</html>