Apache

Last Update: 2018.09.26 03:12:38

Apacheのバージョンを確認

$ rpm -qa | grep httpd
httpd-tools-2.4.6-19.el7.centos.x86_64
httpd-2.4.6-19.el7.centos.x86_64

静的に組み込まれたモジュールを確認

$ httpd -l
Compiled in modules:
core.c
mod_so.c
http_core.c

静的/動的に組み込まれたモジュールを確認

(static)が静的に、(shared)が動的モジュール

$ httpd -M
Loaded Modules:
core_module (static)
so_module (static)
http_module (static)
access_compat_module (shared)
actions_module (shared)
alias_module (shared)...