Clearing all the QRTZ tables in an SSH allowed to setup the scheduled jobs afresh.
To do so SSH into the affected PAM appliance:
- connect to the cspm db
mysql cspm
- clear all the QRTZ tables running these commands:
delete from QRTZ_BLOB_TRIGGERS;
delete from QRTZ_CALENDARS;
delete from QRTZ_CRON_TRIGGERS;
delete from QRTZ_FIRED_TRIGGERS;
delete from QRTZ_JOB_DETAILS;
delete from QRTZ_JOB_LISTENERS;
delete from QRTZ_PAUSED_TRIGGER_GRPS;
delete from QRTZ_SCHEDULER_STATE;
delete from QRTZ_SIMPLE_TRIGGERS;
delete from QRTZ_TRIGGERS;
delete from QRTZ_TRIGGER_LISTENERS;
(it might be necessary to rerun this batch of commands several times to resolve all of the constraints in the tables)