Monday, August 27, 2018

linux - How to list Apache enabled modules?



Is there a command that list all enabled Apache modules?


Answer



To list apache loaded modules use:



apachectl -M



or:



apachectl -t -D DUMP_MODULES 


or on RHEL,CentoS, Fedora:



httpd -M



For more options man apachectl. All these answers can be found just by little google search.


No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...