採用nginx原始碼安裝方式
1.將nginx-1.8.0.tar.gz上傳到/usr/local/目錄下
# tar –zxvf nginx-1.8.0.tar.gz
2.進入根目錄執行編譯檢查依賴環境是否滿足./configure
# cd /usr/local/nginx-1.8.0
# ./configure
由於nginx依賴於gc++、pcre、zlib等庫,如果環境不存在此三個庫,則會報error,需要安裝
# yum –y install gcc gcc-c++ autoconf automake
# yum –y install pcre-devel
# yum –y install zlib-devel
再次執行./configure
# ./configure
# make
# make install
若上面步驟正確執行,安裝完畢!
# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
可將nginx配置為系統變數
# ln -s /usr/local/nginx/sbin/nginx /usr/bin/
配置後nginx啟動命令為nginx -c /usr/local/nginx/conf/nginx.conf
10.86.64.198 內部使用,nginx.conf及80.conf
}10.86.64.197 外部使用,nginx.conf及80.conf、443.conf
}nginx -t 檢視nginx程序當前使用的配置檔案
start nginx # 啟動 nginx
nginx -s reload # 重新載入配置檔案
nginx -s reopen # 重啟 nginx
nginx -s stop # 停止 nginx
伺服器安裝部署nginx
1 openssl安裝 2 pcre安裝 cd 回到 nginx目錄下 3 zlib安裝 cd 回到 nginx目錄下 4 nginx安裝 cd 回到 nginx目錄下 先找一下nginx安裝到什麼位置上了 whereis nginx cd usr local nginx 這是上一步的結果 進入ng...
前端部署nginx伺服器
linux版本 centos7 64位 1 安裝前先檢視nginx有無安裝 yum list grep nginx,或者yum list installed grep nginx 如果已經安裝了,則會出現 的標識 未安裝情況下 已安裝情況下 2 安裝nginx yum install nginx 手...
nginx伺服器部署SSL證書
1.1.1 openssl解壓 將 openssl 安裝包openssl 1.0.2d.tar.gz上傳 到目錄 home 執行 解壓命令 tar xzf openssl 1.0.2d.tar.gz 2.1.1 生成key 新建乙個目錄存放ssl證書生成檔案 m kdir ssl openssl g...