Cleanup JSS Server

sathishvana
New Contributor II

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

2 REPLIES 2

kerouak
Valued Contributor

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;

kerouak
Valued Contributor

or, just create a new database and point the webapp at that.