An error message similar to the following is displayed in /var/netwitness/uax/log/sa.log:
java.lang.IllegalStateException: No record found for selection of Trigger with key:
'DEFAULT.864f3ac8-3f5c-45d4-9314-1c4f9924bb9a' and statement: SELECT * FROM QRTZ_SIMPLE_TRIGGERS WHERE
SCHED_NAME = 'org.springframework.scheduling.quartz.SchedulerFactoryBean#0' AND TRIGGER_NAME = ? AND
TRIGGER_GROUP = ?
at
org.quartz.impl.jdbcjobstore.SimpleTriggerPersistenceDelegate.loadExtendedTriggerProperties(SimpleTriggerPersistenceDelegate.at org.quartz.impl.jdbcjobstore.StdJDBCDelegate.selectTrigger(StdJDBCDelegate.java:1801)
at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveTrigger(JobStoreSupport.java:1520)
... 60 more
In order to resolve the issue, the trigger in question needs to be removed from the database. The trigger that is causing the error will be displayed after the word DEFAULT in the error message, as shown in red above. In this example, the trigger name is 864f3ac8-3f5c-45d4-9314-1c4f9924bb9a. This name will be referred to as <triggerName> in the steps below.
To remove the trigger from the Quartz database, connect to the RSA NetWitness Admin Server host via SSH and issue the following commands:
1. systemctl stop jetty
2. cd /var/lib/netwitness/uax/db
3. cp platform.h2.db platform.h2.db.backup
4. wget https://repo1.maven.org/maven2/com/h2database/h2/1.3.172/h2-1.3.172.jar
5. java -cp h2-1.3.172.jar org.h2.tools.Shell -url jdbc:h2:file:platform
the following commands above will connect you to SQL database then you need to issue the following SQL commands
Now restart Jetty with the following command: systemctl start jetty
If you are unsure of the steps above or encounter issues, contact RSA Support and quote this article ID for further assistance.