LoginSignup
0
0

More than 5 years have passed since last update.

ApacheのMPMおよび組み込まれてる拡張モジュールの確認

Posted at

MPMの確認

$ apachectl -l
Compiled in modules:
  core.c
  mod_log_config.c
  mod_logio.c
  event.c
  http_core.c
  mod_so.c
$

preforkだとevent.cがprefork.cに変わる。

組み込まれている拡張モジュールの確認

$ apachectl -M
Loaded Modules:
 core_module (static)
 log_config_module (static)
 logio_module (static)
 version_module (static)
 mpm_prefork_module (static)
 http_module (static)
 so_module (static)
 alias_module (shared)
 auth_basic_module (shared)
 authn_file_module (shared)
 authz_default_module (shared)
 authz_groupfile_module (shared)
 authz_host_module (shared)
 authz_user_module (shared)
 dir_module (shared)
 env_module (shared)
 expires_module (shared)
 headers_module (shared)
 mime_module (shared)
 php5_module (shared)
 reqtimeout_module (shared)
 rewrite_module (shared)
 rpaf_module (shared)
 setenvif_module (shared)
 status_module (shared)
Syntax OK
$
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0