高效能Web伺服器Nginx的配置與部署研究(4)Nginx常用命令
高效能Web伺服器Nginx的配置與部署研究(4)Nginx常用命令
- Author: Poechant
- Blog:blog.CSDN.net/Poechant
- Email: zhongchao.ustc#gmail.com (#->@)
- Date: December 30th, 2011
- Update: February 36th, 2012
- Column:《Nginx 高效能Web伺服器》
1. 啟動 Nginx
poechant@ubuntu:sudo ./sbin/nginx
2. 停止 Nginx
poechant@ubuntu:sudo ./sbin/nginx -s stop
poechant@ubuntu:sudo ./sbin/nginx -s quit
-s
都是採用向
Nginx 傳送訊號的方式。
3. Nginx 過載配置
poechant@ubuntu:sudo ./sbin/nginx -s reload
上述是採用向 Nginx 傳送訊號的方式,或者使用:
poechant@ubuntu:service nginx reload
4. 指定配置檔案
poechant@ubuntu:sudo ./sbin/nginx -c /usr/local/nginx/conf/nginx.conf
-c
表示configuration
,指定配置檔案。
5. 檢視 Nginx 版本
有兩種可以檢視 Nginx 的版本資訊的引數。第一種如下:
poechant@ubuntu:/usr/local/nginx$ ./sbin/nginx -v
nginx: nginx version: nginx/1.0.0
另一種顯示的是詳細的版本資訊:
poechant@ubuntu:/usr/local/nginx$ ./sbin/nginx -V
nginx: nginx version: nginx/1.0.0
nginx: built by gcc 4.3.3 (Ubuntu 4.3.3-5ubuntu4)
nginx: TLS SNI support enabled
nginx: configure arguments: --with-http_ssl_module --with-openssl=/home/luming/openssl-1.0.0d/
6. 檢查配置檔案是否正確
poechant@ubuntu:/usr/local/nginx$ ./sbin/nginx -t
nginx: [alert] could not open error log file: open() "/usr/local/nginx/logs/error.log" failed (13: Permission denied)
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
2012/01/09 16:45:09 [emerg] 23898#0: open() "/usr/local/nginx/logs/nginx.pid" failed (13: Permission denied)
nginx: configuration file /usr/local/nginx/conf/nginx.conf test failed
如果出現如上的提示資訊,表示沒有訪問錯誤日誌檔案和程式,可以sudo
(super
user do
)一下:
poerchant@ubuntu:/usr/local/nginx$ sudo ./sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
如果顯示如上,則表示配置檔案正確。否則,會有相關提示。
7. 顯示幫助資訊
poechant@ubuntu:/user/local/nginx$ ./sbin/nginx -h
或者:
poechant@ubuntu:/user/local/nginx$ ./sbin/nginx -?
以上這些涵蓋了 Nginx 日常維護的所有基本操作,另外還有向 master 程式傳送訊號的相關命令,我們會在後續看到。
-
轉載請註明來自“柳大的CSDN部落格”:blog.CSDN.net/Poechant
-
相關文章
- Nginx部署配置Nginx
- Nginx + Gunicorn 伺服器配置部署 DjangoNginx伺服器Django
- Nginx+uWSGI+Django部署web伺服器NginxDjangoWeb伺服器
- 安裝和配置Nginx Web伺服器NginxWeb伺服器
- 詳解Nginx如何配置Web伺服器NginxWeb伺服器
- Nginx安全配置研究Nginx
- 用伺服器安裝nginx部署web頁面伺服器NginxWeb
- 阿里雲伺服器Nginx的安裝與部署阿里伺服器Nginx
- PHP Web 端操作 Nginx 配置PHPWebNginx
- linux伺服器下部署nginxLinux伺服器Nginx
- [python][nginx][https] Nginx 伺服器 SSL 證照安裝部署PythonNginxHTTP伺服器
- Nginx R31 doc-08-NGINX 和 NGINX Plus 作為 Web 伺服器NginxWeb伺服器
- Nginx 安裝與配置Nginx
- Nginx安裝與配置Nginx
- nginx伺服器搭建以及配置Nginx伺服器
- Nginx快取伺服器配置Nginx快取伺服器
- nginx部署Nginx
- vue專案nginx伺服器部署VueNginx伺服器
- 從 node服務部署,到https配置與nginx轉發HTTPNginx
- 編譯安裝基於nginx與lua的高效能web平臺-openresty編譯NginxWebREST
- 最簡單的nginx教程 - 如何把一個web應用部署到nginx上NginxWeb
- Nginx總結(九)Nginx伺服器高效能優化的配置--輕鬆實現10萬併發訪問量Nginx伺服器優化
- nginx: 高效能http和反向代理伺服器NginxHTTP伺服器
- 伺服器部署前端&node專案(包括阿里雲伺服器、nginx以及mongoDB 的配置)伺服器前端阿里NginxMongoDB
- linux伺服器環境部署(三、docker部署nginx)Linux伺服器DockerNginx
- nginx伺服器架構(一):基本部署與啟動Nginx伺服器架構
- Nginx 伺服器配置支援SignalR (WebSocket)Nginx伺服器SignalRWeb
- nginx伺服器配置問題心得Nginx伺服器
- nginx+uwsgi+flask 伺服器配置NginxFlask伺服器
- vue nginx 打包部署在同一個伺服器 一些配置VueNginx伺服器
- nginx之 nginx限流配置Nginx
- nginx配置Nginx
- 配置nginxNginx
- Nginx 配置Nginx
- Ubuntu 部署 NginxUbuntuNginx
- [部署01] NginxNginx
- Netcraft :2019年4月全球Web伺服器排名 nginx首度登頂RaftWeb伺服器Nginx
- 【Nginx】Nginx部署前端靜態資源Nginx前端
- window中nginx的常用命令Nginx