Share all details about your problem, including any error messages you may have received.
Hi all, would like to know is there any out of the box methods available to get an overview of the system readiness during deployment process? This is to allow us to monitor the system.
You could run a bash script to curl the login page:
#!/bin/bash
# URL of the IdentityIQ login page
url="http://localhost:8080/identityiq/login.jsf?prompt=true"
# Make an HTTP request to the URL and get the HTTP status code
status=$(curl -o /dev/null -s -w "%{http_code}" "$url")
# Check if the status code indicates the page is accessible
if [ "$status" -eq 200 ] || [ "$status" -eq 302 ]; then
echo "IdentityIQ application is running and accessible."
else
echo "IdentityIQ application is down or inaccessible. HTTP Status: $status"
fi
I guess in order to be able to answer properly, probably need information on how the deployment is done.
Usually if you are just trying to test connection if IIQ is up and running you can do so by making an api call. If you need to know if all the host are up and running or not might need to suggest accordingly.
eg: for linux server or from command line you can just run