Is there any api endpoint to know if the acs is up and running?
There are 4 services that comprise GenieACS, all use the HTTP. There are a few options to see if the various services are still up. ps -ax | grep "genieacs"
is probably the most simplistic method. Another option is to use curl. curl -X OPTIONS https://<your_ip_or_host_name>:7547/
and check the exit code, note that this command will cause GenieACS to return a 404, but this isn’t an issue. If its 0
, then you know the service is up.
1 Like