How to clear FOG que?
-
Server
- FOG Version: Running Version 1.4.0, SVN Revision: 6069
- OS: Ubuntu 14.04
Client
- Service Version: 0.11.5
- OS: Windows 7 Pro
Description
My qued items on the start page shows 1 item in the que but my task manager shows nothing. Any ideas how to clear the que?
Thanks!
Cheers,
Joe Gill
Townsend K-12 Schools -
@Joe-Gill This has the commands that will do it: https://wiki.fogproject.org/wiki/index.php?title=Troubleshoot_MySQL#Database_Maintenance_Commands
I’d advise just running all of them.
-
Whenever I run any mysql commands I get the following…
root@fogserver:~# mysql ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
Any idea on how to resolve this?
-
@Joe-Gill You have a password set for your mysql account?
-
@Tom-Elliott
I didn’t think so… I checked my settings file and it didn’t have any listed. The crazy thing is I unicasted just fine from the FOG server with this going on. I can’t seem to get multicast to work but that appears to possibly be something else. -
@Joe-Gill This would return any password in use:
cat /var/www/html/fog/lib/fog/config.class.php | grep DATABASE_PASSWORD
-
Ugh… Yes, I had a password set. I figured out how to get in now. MAN pages are great, when we read them. LOL!
Thanks for making me think!
Cheers,
Joe Gill
Townsend K-12 Schools -
Your suggestion worked!
You might add something to the WIKI to remind those who have passwords on their MYSQL databases to adjust the command accordingly. It took me a minute to figure that out.
mysql --user=FOG_USERNAME --password=YOUR_PASSWORD -D fog
Thanks!
-
@Joe-Gill said in How to clear FOG que?:
You might add something to the WIKI to remind those who have passwords on their MYSQL databases to adjust the command accordingly. It took me a minute to figure that out.
Done.
-
Thanks!!