I have a webserver, and I am migrating it over to RHEL7 (httpd 2.2 -> 2.4). In our old server (2.2), we could do a httpd fullstatus, and it would show a lot of good information about apache on the server. On the apache 2.4 server, I am having issues getting the fullstatus command to work. Here is a list of steps that I took (compiled from various guides around the internet) - 1.) - Checked if status_module is enabled. httpd -M | grep status returns status_module (shared) . 2.) - Added the module into the httpd.conf - SetHandler server-status Require host Order deny,allow Deny from all Allow from 127.0.0.1 3.) - Created a conf file inside of conf.modules.d/ (with the same words as above) - SetHandler server-status Order deny,allow Deny from all Allow from 127.0.0.1 I reloaded / restarted apache after doing all of those things, but I still has no luck in getting httpd fullstatus to work. NOTE - I did both of these ste...