Latest web development tutorials

Linux httpd Befehl

Linux-Befehl Daquan Linux - Befehl Daquan

Linux httpd Befehl ist der Apache HTTP-Server-Programm.

httpd für den Apache HTTP-Server-Programm. Direkte Umsetzung des Programms, um den Server-Dienst starten.

Grammatik

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

Parameter Beschreibung:

  • -c <httpd command> vor Lesen der Konfigurationsdatei, die Befehlsoptionen auszuführen.
  • -C <Httpd command> nach Lesen der Konfigurationsdatei, dann die Optionen Befehl ausführen.
  • -d <server root> Root-Verzeichnis des Servers.
  • -D <Stellen Sie die Parameterdatei> die Parameter in die Konfigurationsdatei übergeben angibt.
  • -f <Voreinstellungsdatei> Geben Sie Konfigurationsdatei.
  • -h Displays helfen.
  • -l Anzeigemodul im Server zum Zeitpunkt der Kompilierung enthalten.
  • -L Anzeige Beschreibung httpd Befehl.
  • -S Anzeige Profileinstellungen.
  • Die Syntax ist richtig -t Testkonfigurationsdatei.
  • -v Zeigt Informationen zur Version.
  • -V Zeigt die Versionsinformationen und die Einrichtung der Umwelt.
  • -X Weg eines einzigen Verfahrens den Server zu starten.

Beispiele

Überprüfen Sie die Konfigurationsdatei Syntaxfehler

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

Starten Sie httpd

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

Kompilieren Anzeigemodul

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

Profile anzeigen

# 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-Befehl Daquan Linux - Befehl Daquan