Posted on 10-16-2013 07:47 AM
No software.plugins show up in inventory.
Error when checking database health is...
jamfsoftware.plugins - Table is marked as crashed jamfsoftware.plugins - 1 client is using or hasn't closed the table properly jamfsoftware.plugins - Found key at page 342540288 that points to record outside datafile jamfsoftware.plugins - Corrupt
I've tried "repair database tables" in the JSS but it just seems to hang for over 1/2 hour.
Suggestions for repairing or rebuilding this database?
Posted on 10-17-2013 08:23 AM
I found the method of repairing the databases from the terminal.
UPDATE mysql.user SET Password=PASSWORD('MYNEWPASS') WHERE User='root';
grant all privileges on *.* to 'root'@'%';
grant all privileges on *.* to 'root'@'localhost';
grant all privileges on *.* to 'root@localhost';
SHOW GRANTS FOR 'root'@'%';
FLUSH PRIVILEGES;
1. Go to a command prompt and run this command
C:Program FilesMySQLMySQL Server 5.6>"C:Program FilesMySQLMySQL Server 5.6
inmysqld.exe" --defaults-file="C:ProgramDataMySQLMySQL Server 5.6my.ini"
--init-file=C:mysql-init.txt --console