安裝部署nginx (linux)
1.進解壓後的安裝包
$ ./configure (檢查各種環境配置和依賴包,確定可以安裝)
$ make
$ sudo make install
預設安裝路徑:
/usr/local/nginx/
我們現在通過—prefix=/opt/nginx, 將nginx安裝到/opt/nginx目錄下。
./configure --prefix=/opt/nginx
以上都要在安裝包資料夾下的路徑進行。這時候就安裝完了nginx。。。
啟動nginx:
進已安裝的包:
/usr/local/nginx/
file nginx # 檢視是否是可執行檔案
然後 $
./nginx # 直接啟動
這時候: ps ajx | grep nginx # 檢視伺服器是否已經啟動
上面的master 看著worker ,當worker異常掛了他立馬會會開乙個,保持原樣。
nginx 預設為8000 埠
nginx配置檔案:
常用命令:
nginx安裝使用
2.修改配置檔案 nginx.conf user nobody worker processes 1 error log logs error.log 3.在nginx目錄下的html中建立目錄test和test.rar檔案 4.開啟命令列切換到nginx目錄 4.1測試指令碼 nginx t 4....
Nginx 安裝使用
nginx是非同步框架的網頁伺服器,也可以用作反向 負載平衡器和http快取。該軟體由伊戈爾 賽索耶夫建立並於2004年首次公開發布。2011年成立同名公司以提供支援。2019年3月11日,nginx公司被f5 networks以6.7億美元收購。nginx是免費的開源軟體,根據類bsd許可證的條款...
Nginx安裝使用
apt install nginx y檢查執行狀態 ps ef grep nginx常用命令操作 nginx v v 檢視版本 nginx c etc nginx nginx.conf 指定配置檔案啟動nginx nginx s stop reload 關閉 重啟 nginx t 檢查配置檔案是否正...