Latest web development tutorials

Linuxのhttpdのコマンド

LinuxのコマンドDaquanの LinuxのコマンドDaquanの

Linuxのhttpdのコマンドは、Apache HTTPサーバプログラムです。

Apache HTTPサーバープログラムのhttpdの。 サーバーサービスを開始するプログラムの直接実装。

文法

httpd [-hlLStvVX][-c<httpd指令>][-C<httpd指令>][-d<服务器根目录>][-D<设定文件参数>][-f<设定文件>]

パラメータ説明:

  • -c <httpdのコマンド>設定ファイルを読み込む前に、コマンド・オプションを実行します。
  • コマンドオプションを実行し、設定ファイルを読んだ後-C <からhttpdコマンド>。
  • -d <サーバールート>サーバーのルートディレクトリ。
  • -D設定ファイルに渡されたパラメータを指定する<パラメータファイル設定>を。
  • -f <設定ファイル>設定ファイルを指定します。
  • -h、ヘルプが表示されます。
  • -l表示モジュールはコンパイル時にサーバに含まれています。
  • -L表示内容のhttpdコマンド。
  • -Sは、プロファイルの設定を表示します。
  • 構文が正しい-tテストコンフィギュレーションファイルです。
  • -vバージョン情報を表示します。
  • -Vバージョン情報を表示し、環境の確立。
  • サーバを起動するための単一の手順の-X道。

設定ファイルの構文エラーをチェックしてください

# httpd -t
httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
Syntax OK

HTTPDを起動します。

httpd
httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

ディスプレイモジュールをコンパイルします

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

プロファイルの表示

# httpd -L>1.log|tail -n 20 1.log
Maximum number of children alive at the same time
Allowed in *.conf only outside , or 
ServerLimit (prefork.c)
Maximum value of MaxClients for this run of Apache
Allowed in *.conf only outside , or 
KeepAliveTimeout (http_core.c)
Keep-Alive timeout duration (sec)
Allowed in *.conf only outside , or 
MaxKeepAliveRequests (http_core.c)
Maximum number of Keep-Alive requests per connection, or 0 for infinite
Allowed in *.conf only outside , or 
KeepAlive (http_core.c)
Whether persistent connections should be On or Off
Allowed in *.conf only outside , or 
LoadModule (mod_so.c)
a module name and the name of a shared object file to load it from
Allowed in *.conf only outside , or 
LoadFile (mod_so.c)
shared object file or library to load into the server at runtime
Allowed in *.conf only outside , or 

LinuxのコマンドDaquanの LinuxのコマンドDaquanの