답변:
아파치로드 모듈을 나열하려면 다음을 사용하십시오.
apachectl -M
또는:
apachectl -t -D DUMP_MODULES
또는 RHEL, CentoS, Fedora에서 :
httpd -M
더 많은 옵션 man apachectl
. 이 모든 답변은 작은 Google 검색으로 찾을 수 있습니다.
또한 server-info 를 사용 하여 원격 서버에서 정보 를 얻을 수 있습니다.
<Location /server-info>
SetHandler server-info
Order allow,deny
Allow from 127.0.0.1 xxx.xxx.xxx.xxx
</Location>
http://your.host.example.com/server-info?list 에서 활성화 된 모든 Apache 모듈 목록을 얻을 수 있습니다.
정보 모듈을 활성화해야합니다.
sudo a2enmod info.load
sudo a2enmod info.conf
sudo service apache2 restart
다시 시작한 후 :
http://localhost/server-info
긴 모듈 목록과 구성 정보를 제공합니다.
원격 서버에서 보려면 원격 서버가 정보를 볼 수 있도록 /etc/apache2/mods-available/info.conf에서 'Requires'옵션을 변경할 수 있습니다.
a2enmod
명령을 사용하여 수동으로 "심 볼링"하는 대신 {installed} 모듈을 활성화 하지 않습니까?
a2enconf
파일을 "conf-available"디렉토리에서 "conf-enabled"로 심볼릭 링크 해야합니다.
-M
작동합니다.