0 votes
in Apache Webserver by
How To Know If Apache Web Server Running?

1 Answer

0 votes
by

There are multiple ways to find this.

Login to web server and grep for “httpd” process

          ps -ef |grep httpd

Check for any alert in your monitoring dashboard.

Check if your apache IP:port is accessible in the browser

Ex: http://yourapacheserver.com

Check if configured IP and port is listening on the server with netstat

          netstat -anlp |grep 80

Related questions

0 votes
asked Mar 30, 2022 in Apache Webserver by sharadyadav1986
0 votes
asked Mar 30, 2022 in Apache Webserver by sharadyadav1986
...