nginx公升級不改變配置檔案

2022-08-31 15:57:38 字數 2379 閱讀 7847

檢視當前版本是:1.10.3

進入該目錄

[root@proxy opt]# cd nginx-1.12.2/

[root@proxy nginx-1.12.2]# ls

auto     changes.ru  configure  html     man     src

changes  conf        contrib    license  readme

配置安裝模組及資訊

編譯[root@proxy nginx-1.12.2]# make

檢視當前目錄發現多了乙個objs目錄

[root@proxy nginx-1.12.2]# ls

auto     changes.ru  configure  html     makefile  objs    src

changes  conf        contrib    license  man       readme

將之前的版本備份

[root@proxy nginx-1.12.2]# mv /usr/local/nginx/sbin/nginx  /usr/local/nginx/sbin/old_nginx

將objs目錄下新的nginx拷貝到/usr/local/nginx/sbin/目錄下

[root@proxy nginx-1.12.2]# cp objs/nginx /usr/local/nginx/sbin/

檢視公升級後的版本為:1.12.2

最後,啟動公升級後的nginx

[root@proxy nginx-1.12.2]# make upgrade

/usr/local/nginx/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

kill -usr2 `cat /usr/local/nginx/logs/nginx.pid`

sleep 1

test -f /usr/local/nginx/logs/nginx.pid.oldbin

kill -quit `cat /usr/local/nginx/logs/nginx.pid.oldbin`

或者直接結束nginx程序重啟

[root@proxy nginx-1.12.2]# pkill nginx

[root@proxy nginx-1.12.2]# /usr/local/nginx/sbin/nginx

檢視80埠是否啟動並被nginx所用

[root@proxy nginx-1.12.2]# netstat -ntulp |grep nginx

tcp        0      0 0.0.0.0:80              0.0.0.0:*               listen      4502/nginx: master

至此,nginx公升級成功!

nginx配置檔案

執行使用者 user nobody nobody 啟動程序 worker processes 2 全域性錯誤日誌及pid文件 error log logs error.log notice pid logs nginx.pid 工作模式及連線數上限 events 設定http伺服器,利用他的反向 功...

nginx 配置檔案

ps nginx使用有兩三年了,現在經常碰到有新使用者問一些很基本的問題,我也沒時間一一回答,今天下午花了點時間,結合自己的使用經驗,把nginx的主要配置引數說明分享一下,也參考了一些網路的內容,這篇是目前最完整的nginx配置引數中文說明了。更詳細的模組引數請參考 定義nginx執行的使用者和使...

Nginx 配置檔案

2 配置詳解 3 配置備份 nginx 配置檔案主要分為六個區域 nginx worker 程序的執行使用者以及使用者組,預設由 nobody 賬號執行。user nobody nginx 要開啟的子程序數。每個 nginx 程序平均耗費 10m 12m 記憶體,一般指定 1 個程序就足夠了。若是多...