Posted on 03-18-2019 04:19 PM
Hi,
We are planning to cleanup( delete policies, Config profiles, Packages and etc) everything from JAMF Dev environment and starts as a new. Could anyone please help us if is there any simple solutions.
Thanks in advance.
Regards,
Sathish
Posted on 03-19-2019 07:07 AM
easiest and quickest way is to delete the data in the Database Tables.
So, go to the DB server, login to MySQL
mysql -u root -p
> use 'database name'
>show tables; (this will list all tables in the database
Then, to clear all data:
>TRUNCATE TABLE table_name;
Posted on 03-19-2019 07:16 AM
or, just create a new database and point the webapp at that.