Nutanix MOVE is a product that helps Nutanix customers move or migrate VMs from ESXi to AHV environments. IT is quite possible when a customer is doing a few migration tasks that the Migration Plans/tasks get stuck and do not progress. The customer has no option other than having to cancel the Migration tasks, and retry the migrations.
It is possible to cancel the MOVE Migration tasks. Rebooting the MOVE VM does not help. You need to access the database and remove these Migration instances:
Carry out the following commands to cancel the Migration tasks:
sudo docker exec -it $(sudo docker ps -a | grep 'nutanix/xtract_postgres' | awk '{print $1}') psql datamover
SELECT mpuuid,name FROM migrationplans;
DELETE FROM migrationplans WHERE mpuuid='<migration_plan_UUID>';
DELETE 1
\q to quit
Restart the services by running following command
$ svcrestart
Now you can revisit the MOVE GUI and create new Migration Plans.