Hi,
I have 1 VM which stuck in my ”Powering Down” status.
This is what I did before in similar situations before:
engine=# select vm_guid from vm_static where vm_name=‘My_VM-Active';
vm_guid
--------------------------------------
f4e44168-92e2-40ec-a04e-c374ba2ef9b8
(1 row)
engine=# select status from vm_dynamic where vm_guid='f4e44168-92e2-40ec-a04e-c374ba2ef9b8';
status
--------
16
(1 row)
engine=# update vm_dynamic SET status=0 where vm_guid='f4e44168-92e2-40ec-a04e-c374ba2ef9b8';
UPDATE 1
engine=# update vm_dynamic SET run_on_vds=null WHERE vm_guid='f4e44168-92e2-40ec-a04e-c374ba2ef9b8';
UPDATE 1
But now this receipt doesn’t work. Running again
engine=# select status from vm_dynamic where vm_guid='f4e44168-92e2-40ec-a04e-c374ba2ef9b8';
status
--------
16
(1 row)
shows status didn’t changed.
How to fix this ?
Thanks in advance.
Andrei