Ubuntu系统下的Nginx服务器软件安装时的常见错误解决
更新时间:2016年03月04日 16:01:16 作者:张大鹏
这篇文章主要介绍了Ubuntu系统下的Nginx服务器软件安装时的常见问题解决,包括彻底卸载Nginx的方法介绍,需要的朋友可以参考下
Nginx安装问题
下载nginx,地址:http://nginx.org/en/download.html
解压安装,这个不解释
问题出现1:
./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrite_module option, or install the PCRE library into the system, or build the PCRE library statically from the source with nginx by using --with-pcre=<path> option.
解决1:
sudo apt-get install libpcre3 libpcre3-dev
问题出现2:
./configure: error: the HTTP gzip module requires the zlib library. You can either disable the module by using --without-http_gzip_module option, or install the zlib library into the system, or build the zlib library statically from the source with nginx by using --with-zlib=<path> option.
解决2:
下载zlib库,地址:http://www.zlib.net/
直接解压安装
which zlib
查看一下,有可能还需要安装:
sudo apt-get install openssl libssl-dev
执行configure操作:
./configure –prefix=/usr/local/nginx –pid-path=/var/run/nginx.pid--with-http_stub_status_module –with-http_ssl_module make make install
启动:
/usr/local/nginx/sbin/nginx
测试:
curl -i http://localhost
干净卸载nginx
命令:
sudo apt-get --purge autoremove nginx
命令:
which nginx
如果没有提示,证明卸载成功,嘿嘿~
相关文章
开启Nginx时端口被占用提示:Address already in use
这篇文章主要介绍了开启Nginx时端口被占用提示:Address already in use的解决方法,文中通过两种方法给大家介绍了Nginx的启动、停止与重启 的操作方法 ,需要的朋友可以参考下2018-09-09修改nginx服务器类型实现简单伪装(隐藏nginx类型与版本等)
这篇文章主要介绍了修改nginx服务器类型实现简单伪装(隐藏nginx类型与版本等),需要的朋友可以参考下2016-03-03Nginx流量拷贝ngx_http_mirror_module模块使用方法详解
这篇文章主要介绍了Nginx流量拷贝,Nginx专门提供了ngx_http_mirror_module模块,用来实现流量拷贝。将生产环境的流量拷贝到预上线环境或测试环境2022-04-04如何使用Nginx和uwsgi在自己的服务器上部署python的flask项目
Nginx 是一个高性能的 HTTP 和反向代理服务,其特点是占有内存少,并发能力强,事实上nginx的并发能力在同类型的网页服务器中表现较好,这篇文章主要介绍了如何使用Nginx和uwsgi在自己的服务器上部署python的flask项目,需要的朋友可以参考下2023-11-11
最新评论