apachectl

提供: FreeBSD入門
2014年3月8日 (土) 23:34時点におけるDaemon (トーク | 投稿記録)による版 (ページの作成:「apachectl (Apache Control)とは、Apache(httpd)をコントロールするコマンドです。 '''読み方''' ;apachectl:あぱっち しーてぃ...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索
スポンサーリンク

apachectl (Apache Control)とは、Apache(httpd)をコントロールするコマンドです。

読み方

apachectl
あぱっち しーてぃーえる
Apache Control
あぱっち こんとろーる

概要

apachectl の代わりに /usr/local/etc/rc.d/apache24 (/usr/local/etc/rc.d/apache*) でもいいかもしれません。

使い方

コマンドラインオプション

Usage: /usr/local/sbin/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の起動

sudo apachectl start

Apacheの停止

sudo apachectl stop

Apacheの再起動

sudo apachectl restart

Apacheの緩やかな再起動

Apacheの緩やかな再起動(優雅な再起動)とは、「現在、処理中のユーザのリクエストが完了するのを待ってからApacheを再起動する」という意味です。

sudo apachectl graceful

Apacheの緩やかな停止

Apacheの緩やかな停止(優雅な停止)とは、「現在、処理中のユーザのリクエストが完了するのを待ってからApacheを停止する」という意味です。

sudo apachectl graceful-stop

Apacheの設定のテスト

httpd.conf などの設定ファイルのシンタックスのテストをします。

sudo apachectl configtest

関連項目





スポンサーリンク