1. 啟動 Nginx
poechant@ubuntu:sudo./sbin/nginx
2. 停止 Nginx
poechant@ubuntu:sudo./sbin/nginx -s stoppoechant@ubuntu:sudo./sbin/nginx -s quit
-s都是采用向 Nginx 發(fā)送信號的方式。
3. Nginx 重載配置
poechant@ubuntu:sudo./sbin/nginx -s reload
上述是采用向 Nginx 發(fā)送信號的方式竹揍,或者使用:
poechant@ubuntu:servicenginx reload
4. 指定配置文件
poechant@ubuntu:sudo./sbin/nginx -c /usr/local/nginx/conf/nginx.conf
-c表示configuration瞪慧,指定配置文件胃碾。
5. 查看 Nginx 版本
有兩種可以查看 Nginx 的版本信息的參數(shù)恩沽。第一種如下:
poechant@ubuntu:/usr/local/nginx$ ./sbin/nginx -vnginx:nginxversion:nginx/1.0.0
另一種顯示的是詳細的版本信息:
poechant@ubuntu:/usr/local/nginx$ ./sbin/nginx -Vnginx:nginxversion:nginx/1.0.0nginx:built by gcc4.3.3(Ubuntu4.3.3-5ubuntu4)nginx:TLS SNI support enablednginx:configurearguments:--with-http_ssl_module --with-openssl=/home/luming/openssl-1.0.0d/
6. 檢查配置文件是否正確
poechant@ubuntu:/usr/local/nginx$ ./sbin/nginx -tnginx:[alert] couldnotopen error logfile:open()"/usr/local/nginx/logs/error.log"failed (13: Permission denied)nginx:the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok2012/01/0916: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
如果出現(xiàn)如上的提示信息阱冶,表示沒有訪問錯誤日志文件和進程顽冶,可以sudo(super user do)一下:
poerchant@ubuntu:/usr/local/nginx$ sudo ./sbin/nginx -tnginx:the configuration file /usr/local/nginx/conf/nginx.conf syntax is oknginx: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 進程發(fā)送信號的相關命令俐东,我們會在后續(xù)看到跌穗。
作者:JokerW
鏈接:http://www.reibang.com/p/630e2e1ca57f
來源:簡書
簡書著作權歸作者所有,任何形式的轉載都請聯(lián)系作者獲得授權并注明出處虏辫。