「httpd」の版間の差分
提供: FreeBSD入門
行8: | 行8: | ||
== 概要 == | == 概要 == | ||
通常は、[[apachectl]]もしくは/usr/local/etc/rc.d/apache*のスクリプトによって、[[httpd]] が制御(start/stop/restart)されます。 | 通常は、[[apachectl]]もしくは/usr/local/etc/rc.d/apache*のスクリプトによって、[[httpd]] が制御(start/stop/restart)されます。 | ||
− | |||
== インストール == | == インストール == | ||
[[Apache]]のパッケージに含まれます。 | [[Apache]]のパッケージに含まれます。 | ||
行79: | 行78: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== httpdを1つだけ立ち上げる === | === httpdを1つだけ立ち上げる === | ||
− | + | デバッグ目的に使うオプションです。1つのworkerだけを起動します。gdbと併用して使うことが想定されます。 | |
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
$ httpd -X | $ httpd -X | ||
行85: | 行84: | ||
== 関連項目 == | == 関連項目 == | ||
{{apache}} | {{apache}} | ||
− | |||
<!-- vim: fileencoding=utf-8 filetype=mediawiki | <!-- vim: fileencoding=utf-8 filetype=mediawiki | ||
--> | --> |
2015年9月27日 (日) 18:25時点における最新版
httpd とは、Apacheのプログラム名です。Webサービスを提供するデーモンプログラムです。
読み方
- httpd
- えいち てぃー てぃー ぴー でぃー
概要
通常は、apachectlもしくは/usr/local/etc/rc.d/apache*のスクリプトによって、httpd が制御(start/stop/restart)されます。
インストール
Apacheのパッケージに含まれます。
設定
/usr/local/etc/apache24 に設定ファイルがあります。
使い方
コマンドラインオプション
Usage: httpd [-D name] [-d directory] [-f file] [-C "directive"] [-c "directive"] [-k start|restart|graceful|graceful-stop|stop] [-v] [-V] [-h] [-l] [-L] [-t] [-T] [-S] [-X] Options: -D name : define a name for use in <IfDefine name> directives -d directory : specify an alternate initial ServerRoot -f file : specify an alternate ServerConfigFile -C "directive" : process directive before reading config files -c "directive" : process directive after reading config files -e level : show startup errors of level (see LogLevel) -E file : log startup errors to file -v : show version number -V : show compile settings -h : list available command line options (this page) -l : list compiled in modules -L : list available configuration directives -t -D DUMP_VHOSTS : show parsed vhost settings -t -D DUMP_RUN_CFG : show parsed run settings -S : a synonym for -t -D DUMP_VHOSTS -D DUMP_RUN_CFG -t -D DUMP_MODULES : show all loaded modules -M : a synonym for -t -D DUMP_MODULES -t : run syntax check for config files -T : start without DocumentRoot(s) check -X : debug mode (only one worker, do not detach)
ロードするモジュールを調べる
$ httpd -M Loaded Modules: core_module (static) so_module (static) http_module (static) mpm_prefork_module (static) authn_file_module (shared) authn_core_module (shared) authz_host_module (shared) authz_groupfile_module (shared) authz_user_module (shared) authz_core_module (shared) access_compat_module (shared) auth_basic_module (shared) reqtimeout_module (shared) filter_module (shared) mime_module (shared) log_config_module (shared) env_module (shared) headers_module (shared) setenvif_module (shared) version_module (shared) proxy_module (shared) proxy_fcgi_module (shared) unixd_module (shared) status_module (shared) autoindex_module (shared) dir_module (shared) alias_module (shared) rewrite_module (shared) php5_module (shared) actions_module (shared)
httpdを1つだけ立ち上げる
デバッグ目的に使うオプションです。1つのworkerだけを起動します。gdbと併用して使うことが想定されます。
$ httpd -X
関連項目
- Apache
- httpd
- apachectl
- rotatelogs
- httpd
- htdigest
- htpasswd
- logresolve
- httplog
- Accept Filter
- Apache 2.4をインストールする