How to restart UBA app 1.x.x only.
How to restart UBA app.
# /opt/qradar/support/qapp_utils.py ls
Get the app_id
# /opt/qradar/support/qapp_utils.py connect <app_id>
Enter the app and restart the web server:
# ps aux | grep run.py # kill -9 the pid for run.py
After this, the flask server should automatically come up.
To restart the backend polling:
# ps aux | grep 'python poll.py' # kill -9 the pid for poll.py
After this, the poll should come back up automatically.