Applicable to:
- SolusVM 2
Question
How to cancel a stuck task in SolusVM 2?
Answer
- Create the database backup:
How to create SolusVM 2 database backup? - Access the database:
How to access SolusVM 2 database? - Set the task status as 'failed':
# update tasks set status='failed' where id=ID;
Where ID is an id of a task in SolusVM 2 UI > Tasks
For many tasks use the query:
UPDATE tasks
SET status = 'failed'
WHERE id IN (193608, 193609, 193610);
Comments
Please sign in to leave a comment.