JSA might not generate offenses due to corruption of PGSQL DB. Doing a Hard/Soft Clean of the Security Event Management (SEM) from the WebUI does not clean the PostGres DB; would have to clean the PGSQL Data (clean SEM) from the CLI.
No Offenses in web UI.
Database corruption.
Follow the steps below to Clean SEM from the CLI:
Soft Clean SIM - Closes all offenses in the database.
service ecs stop
)
psql -U qradar
begin;
select clean_sem_model_soft();
commit;
\q
cd /store/mpc
rm -fr core
d
service ecs start
Hard Clean SIM - Closes all active SIM data including offenses, targets, and attackers.
service hostcontext stop
service tomcat stop
service imq stop
psql –U qradar
elect clean_sem_model();
cd
service imq start
service tomcat start
service hostcontext start
2019-11-30: Validated process in 7.3.2p2 code.