啟動可以使用下面的命令列:
cd usr/local/nginx/sbin ./nginx
#相關命令:
一.重啟
更改配置重新啟動nginx
kill -HUP 主进程号或进程号文件路径
或使用
cd /usr/local/nginx/sbin ./nginx -s reload
判斷設定檔是否正確
nginx -t -c /usr/local/nginx/conf/nginx.conf
或
##cd /usr/local/nginx/sbin ./nginx -t
#
二.關掉查詢nginx主行程號碼
ps -ef | grep nginx
快速停止kill -TERM 主程序號
強制停止kill -9 nginx
#若nginx.conf配置了pid檔路徑,如果沒有,則在logs目錄下
kill -訊號類型'/usr/local/nginx/logs/nginx.pid'
三.升級1.先用新程式取代舊程式檔案2.kill -USR2 舊版程式的主行程號碼或行程檔名
此時舊的nginx主程式會把自己的行程檔案改名為.oldbin,然後執行新版nginx,此時新舊版本同時執行
4.不重載設定啟動新/舊工作流程 kill -HUP 舊/新版本主程序號碼
#四.實際應用中經常使用
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
# /usr/local/nginx/sbin/nginx -h
nginx version: nginx/0.7.63
Usage: nginx [-?hvVt] [-s signal] [-c filename] [-p prefix] [-g directives]
Options:
-?,-h : this help
-v : show version and exit
-V : show version and configure options then exit
-t : test configuration and exit
-s signal : send signal to a master process: stop, quit, reopen, reload
-p prefix : set prefix path (default: /usr/local/nginx/)
-c filename : set configuration file (default: conf/nginx.conf)
-g directives : set global directives out of configuration file
# /usr/local/nginx/sbin/nginx -s reload
以上是nginx如何啟動的詳細內容。更多資訊請關注PHP中文網其他相關文章!