Task is "Stuck in Active" and not displayed
-
Hey Everyone,
On FOG’s home screen, i see there is one active task… When I click on “Task Management”, I do not see any active tasks. Any ideas?
-
Please open terminal.
Run:
sudo mysql -u root
(If you have a password for your root user you will need:sudo mysql -u root -p
)Once in mysql shell run:
use fog; update tasks set taskStateID=4 where taskStateID in (0,1,2,3);
You should have no more “active” tasks.
-
Thanks Tom, that fixed me up!
I was playing around with MySQL but couldn’t quite figure it out by myself!
-
@Tom-Elliott Thanks Tom, I had the same problem and this fixed it for me!