「Apache 2.4をインストールする」の版間の差分
提供: FreeBSD入門
(同じ利用者による、間の1版が非表示) | |||
行1: | 行1: | ||
− | [[Apache]] 2.4をインストールする例です。 | + | [[FreeBSD]]に[[Apache]] 2.4をインストールする例です。 |
__TOC__ | __TOC__ | ||
行9: | 行9: | ||
== 設定 == | == 設定 == | ||
=== rc.conf === | === rc.conf === | ||
− | + | 2つ目の設定は、[[Accept Filter]]の acct_http を有効にします。 | |
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
sudo sysrc apache24_enable=YES | sudo sysrc apache24_enable=YES | ||
− | sudo apache24_http_accept_enable=YES | + | sudo sysrc apache24_http_accept_enable=YES |
</syntaxhighlight> | </syntaxhighlight> | ||
=== apacheの設定 === | === apacheの設定 === | ||
行51: | 行51: | ||
=== 優雅な再起動 === | === 優雅な再起動 === | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
− | sudo /usr/local/etc/rc.d/apache24 | + | sudo /usr/local/etc/rc.d/apache24 graceful |
</syntaxhighlight> | </syntaxhighlight> | ||
=== 優雅な停止 === | === 優雅な停止 === | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
− | sudo /usr/local/etc/rc.d/apache24 | + | sudo /usr/local/etc/rc.d/apache24 graceful-stop |
</syntaxhighlight> | </syntaxhighlight> | ||
== 使い方 == | == 使い方 == |
2015年9月27日 (日) 22:23時点における最新版
FreeBSDにApache 2.4をインストールする例です。
目次
概要
インストール
pkgコマンドでインストールする場合
sudo pkg install apache24
設定
rc.conf
2つ目の設定は、Accept Filterの acct_http を有効にします。
sudo sysrc apache24_enable=YES sudo sysrc apache24_http_accept_enable=YES
apacheの設定
/usr/local/etc/apache24/
サービスのコントロール
起動
sudo /usr/local/etc/rc.d/apache24 start
停止
sudo /usr/local/etc/rc.d/apache24 stop
再起動
sudo /usr/local/etc/rc.d/apache24 restart
ステータス
sudo /usr/local/etc/rc.d/apache24 status
コマンドの終了を待つ
sudo /usr/local/etc/rc.d/apache24 poll
サービスが有効か確認する
サービスが有効な場合は、0、そうでなければ、1を返します。コマンドは、何も表示しません。
sudo /usr/local/etc/rc.d/apache24 enabled
rc.confの設定を表示します
サービスの制御に使われるrc.conf変数を表示します。
sudo /usr/local/etc/rc.d/apache24 rcvar
rcvarの確認
/usr/local/etc/rc.d/apache24 rcvar
実行例です。
$ /usr/local/etc/rc.d/apache24 rcvar # apache24 # apache24_enable="NO" # (default: "")
ステータスの確認
/usr/local/etc/rc.d/apache24 status
実行例です。
/usr/local/etc/rc.d/apache24 onestatus apache24 is running as pid 47217.
設定ファイルの再読み込み
sudo /usr/local/etc/rc.d/apache24 reload
設定ファイルのテスト
sudo /usr/local/etc/rc.d/apache24 configtest
優雅な再起動
sudo /usr/local/etc/rc.d/apache24 graceful
優雅な停止
sudo /usr/local/etc/rc.d/apache24 graceful-stop
使い方
コマンドラインオプション
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)
関連項目
- Apache
- httplog
- Accept Filter
- Apache 2.4をインストールする