nginx源码安装教程(CentOS)
生活随笔
收集整理的這篇文章主要介紹了
nginx源码安装教程(CentOS)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1.說明
官方源碼安裝說明:http://nginx.org/en/docs/configure.html
源碼包下載地址:http://nginx.org/en/download.html
版本說明:Mainline--開發版;Stable--穩定版;Legacy--歷史版本
?
2.安裝(以1.10.3為例)
tar -zxvf nginx-1.10.3.tar.gz cd nginx-1.10.3./configure
make
make install
ln -s /usr/local/nginx/sbin/nginx /usr/bin/nginx
如果是想要升級原有nginx,先使用nginx -V查看原有nginx的編譯參數再以相同參數進行configure
默認主配置文件目錄(可通過nginx -t命令查看):/usr/local/nginx/conf/nginx.conf
?
./configure報錯:./configure: error: the HTTP rewrite module requires the PCRE library
解決辦法:yum install -y pcre pcre-devel
./configure報錯:./configure: error: the HTTP gzip module requires the zlib library.
解決辦法: yum install -y zlib zlib-devel
?
3.啟動和停止nginx
啟動:
nginx #可以使用-t檢查當前配置文件是否有誤,可用-c指定配置文件停止:
nginx -s stop #如果只是想重新加載一下當前配置文件可使用nginx -s reload?
參考:
http://www.cnblogs.com/fhen/p/5896105.html
?
總結
以上是生活随笔為你收集整理的nginx源码安装教程(CentOS)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: JavaScript总结01
- 下一篇: 老师,我来帮你推问卷