Nginx入门-安装
参考链接
Nginx官网:http://nginx.org
下载地址: http://nginx.org/en/download.html
安装环境
Ubuntu 16.04
安装步骤
- 下载安装文件
~$: wget http://nginx.org/download/nginx-1.15.7.tar.gz
- 解压缩
~$: tar -xzvf nginx-1.15.7.tar.gz
- 进入到解压后的目录
~$: cd nginx-1.15.7
- 编译安装
~$: ./configure --prefix=/home/xx/nginx
~$: make
~$: make install
- 启动Nginx
~$: cd /home/xx/nginx
~$: sudo ./sbin/nginx
- 访问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