Nginx入门-安装

1 篇文章 0 订阅
1 篇文章 0 订阅

Nginx入门-安装

参考链接

Nginx官网:http://nginx.org
下载地址: http://nginx.org/en/download.html

安装环境

Ubuntu 16.04

安装步骤

  1. 下载安装文件
~$: wget http://nginx.org/download/nginx-1.15.7.tar.gz
  1. 解压缩
~$: tar -xzvf nginx-1.15.7.tar.gz
  1. 进入到解压后的目录
~$: cd nginx-1.15.7
  1. 编译安装
~$: ./configure --prefix=/home/xx/nginx 
~$: make
~$: make install
  1. 启动Nginx
~$: cd /home/xx/nginx 
~$: sudo ./sbin/nginx
  1. 访问http://127.0.0.1 安装成功

错误处理

缺少PCRE library

./configure: error: the HTTP rewrite module requires the PCRE library.

解决办法:

此时需要下载PCRE library
下载地址:ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.gz
注意此处需要下载 pcre-xx版本,不要下载pcre2
解压pcre 到/home/zz/pcrefix目录
tar -xzvf pcre-8.38.tar.gz
./configure --prefix=/home/zz/pcrefix
make
make install
重新编译nginx
./configure --prefix=/home/xx/nginx --with-pcre=/home/zz/pcre/pcre-8.38
**--with-pcre参数指向pcre的源文件路径**

缺少zlib library

./configure: error: the HTTP gzip module requires the zlib library.

解决方法

sudo apt-get install ruby
sudo apt-get install zlib1g
sudo apt-get install zlib1g.dev
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值