Applicable to:
- SolusVM 2
Symptoms
Unable to remove Compute Resource from SolusVM 2:
SVM_ERROR: This Compute Resource has outgoing migrations.
Cause
Migration tasks are stuck in 'running' and 'pending' states.
Resolution
- Connect to SolusVM 2 Management Node via SSH
- Backup database
- Access database
- Find the tasks in 'running' and 'pending' status:
MYSQL_LIN: select id,status,payload from tasks where status='running';
MYSQL_LIN: select id,status,payload from tasks where status='pending';
- Ensure the tasks are related to the CR you want to remove
- Remove the corresponding tasks with:
MYSQL_LIN: delete from tasks where id=<ID>;
where <ID> is the corresponding migration task.
Comments
0 commentsPlease sign in to leave a comment.