Häufige Fehler und Lösungen in Nginx sind:
Fehler 1:
nginx: [error] CreateFile() "C:\mytools\nginx-1.8.1/logs/nginx.pid" failed (2: The system cannot find the file specified)
oder
nginx: [error] Open() "C:\mytools\nginx-1.8.1/logs/nginx.pid" failed
Lösung:
Verwenden Sie den Befehl, um die Datei /logs/nginx.pid zu erstellen
nginx -c conf/nginx.conf
Fehler 2:
nginx: [alert] could not open error log file: CreateFile() "logs/error.log" failed (3: The system cannot find the path specified) [emerg] : invalid number of arguments in "root" directive in C:\mytools\nginx-1.8.1\conf\nginx.conf:45
Lösung:
Wenn das Stammverzeichnis der Konfigurationsdatei ein Verzeichnis angibt, darf das Ende davon nicht „“ sein.
Verwandte Empfehlungen: Nginx-Tutorial
Das obige ist der detaillierte Inhalt vonEinführung in häufige Nginx-Fehler und Lösungen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!