Um Nginx unter Windows verwenden zu können, müssen wir einige grundlegende Betriebsbefehle beherrschen, z. B. das Starten und Stoppen des Nginx-Dienstes, das Neuladen von Nginx usw. Im Folgenden werde ich eine kurze Einführung geben. 1. Start:
C:servernginx-1.0.2>start nginx
oder
C:servernginx-1.0.2>nginx.exe
Hinweis: Es wird empfohlen, die erste Methode zu verwenden, die zweite sorgt dafür, dass Ihr CMD-Fenster weiterhin ausgeführt wird , andere Befehlsoperationen können nicht ausgeführt werden. 2. Stopp:
C:servernginx-1.0.2>nginx.exe -s stop
oder
C:servernginx-1.0.2>nginx.exe -s quit
Hinweis: Stopp bedeutet, Nginx schnell zu stoppen und möglicherweise keine relevanten Informationen zu speichern. Beenden bedeutet, Nginx vollständig und ordnungsgemäß zu stoppen und relevante Informationen zu speichern.
3. Nginx neu laden:
C:servernginx-1.0.2>nginx.exe -s reload
Wenn die Konfigurationsinformationen geändert werden, müssen diese Konfigurationen neu geladen werden Verwenden Sie diesen Befehl.
4. Öffnen Sie die Protokolldatei erneut:
C:servernginx-1.0.2>nginx.exe -s reopen
5 🎜 >C:servernginx-1.0.2>nginx -v
nginx: Nginx-Version: nginx/1.0.2
oder
C:servernginx-1.0.2>nginx -V
nginx: nginx Version: nginx/1.0.2
nginx: TLS-SNI-Unterstützung aktiviert
nginx: Argumente konfigurieren: --builddir=objs.msvc8 --crossbuild=win32 --with-debug --prefix= --conf-path = conf/nginx.conf --pid-path=logs/nginx.pid --http-log-path=logs/access.log --error-log-path=logs/error.log --sbin-path=nginx . exe --http-client-body-temp-path=temp/client_body_temp
--http-proxy-temp-path=temp/proxy_temp --http-fastcgi-temp-path=temp/fastcgi_temp --with-cc-opt=-DFD_SETSIZE=1024 --with-pcre=objs.msvc8/lib/ pcre-7.9 --with-zlib=objs.msvc8/lib/zlib-1.2.3 --with-select_module --with-http_realip_module --with-http_addition_module
--with-http_sub_module --with-http_dav_module --with-http_stub_status_module --with-http_flv_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-mail --with-ipv6 --with-openssl =objs.msvc8/lib/openssl-0.9.8r
--with-openssl-opt=enable-tlsext --with-http_ssl_module --with-mail_ssl_module
Hinweis: v zeigt nur einfach
Versionsinformationen an, V zeigt nicht nurVersionsinformationen an zeigt auch Konfigurationsparameterinformationen an. 6. Testen oder laden Sie die angegebene Konfigurationsdatei:
Testkonfigurationsdatei
C:servernginx-1.0.2>nginx.exe -t -c conf/default.conf
nginx: die Konfigurationsdatei C:servernginx-1.0.2/conf/default.conf-Syntax isok
nginx: Konfigurationsdatei C:servernginx-1.0.2/conf/default.conf-Test ist erfolgreich
Laden Sie die angegebene Konfigurationsdatei
C:servernginx-1.0.2>start nginx.exe -c conf/default.conf
Das Obige stellt die Start-, Stopp- und andere Befehle von Nginx unter Windows vor, einschließlich der relevanten Inhalte. Ich hoffe, dass es für Freunde hilfreich ist, die sich für PHP-Tutorials interessieren.