Skip to main content

So how does one delete the mysql db and start over w/o wiping the system?

Just go into your MySQL and do a drop on the jamfsoftware database. Might I ask why you are wanting to do this?


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;


It will definitely start your JSS all over again.