Hi Michael,
Make sure the application is locked or unlocked. Use the below query to check.
psql -U qradar -c "select id,name,status,task_status,lock,errors from installed_application;"
Note: The 'lock' field has a timestamp of when the app was locked. The 'status' is "RUNNING".
Resolving The Problem
To unlock any of the Apps, which have a date and time stamp in their "Lock" column.
Using an SSH session login to the Console as the root user.
Type the command:
psql -U qradar -c "update installed_application set lock=null where id=<application id>;"
------------------------------
Arunkumar R
------------------------------