Posted on 08-21-2013 07:20 AM
So how does one delete the mysql db and start over w/o wiping the system?
Solved! Go to Solution.
Posted on 08-21-2013 07:35 AM
I'm an idiot :) It's on my test server, and I just finished an 8hr copy of my Distribution point, only to realize I shouldnt have imported my old DB. I don't really want to wipe teh whole system and redo the whole copy again... sooooo I figure redoing the DB would be the next best thing.
-- DELETE ALL RECIPE
drop schema <database_name>;
drop user <a_user_name>;
drop user <another_user_name>;
FLUSH PRIVILEGES;
Posted on 08-21-2013 07:27 AM
Just go into your MySQL and do a drop on the jamfsoftware database. Might I ask why you are wanting to do this?
Posted on 08-21-2013 07:35 AM
I'm an idiot :) It's on my test server, and I just finished an 8hr copy of my Distribution point, only to realize I shouldnt have imported my old DB. I don't really want to wipe teh whole system and redo the whole copy again... sooooo I figure redoing the DB would be the next best thing.
-- DELETE ALL RECIPE
drop schema <database_name>;
drop user <a_user_name>;
drop user <another_user_name>;
FLUSH PRIVILEGES;
Posted on 08-21-2013 07:45 AM
It will definitely start your JSS all over again.