Applicable to:
- SolusVM 2
Symptoms
Unable to remove Compute Resource from SolusVM 2:
SVM_ERROR: This Compute Resource has outgoing migrations.
Cause
Stuck tasks in state 'running' or 'pending'.
Resolution
- Connect to SolusVM 2 Management Node via SSH
- Backup Management node
- 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';
-
Set 'failed' status for the corresponding tasks with:
MYSQL_LIN: UPDATE tasks SET status='failed' where id=<ID>;
where <ID> is the corresponding task ID.
Comments
0 comments
Please sign in to leave a comment.