CentOS 6.5下配置Nginx

下载最新版本Nginx 网址

wget  
 

解压下载下好的源码包
 tar -zxvf nginx-0.8.53.tar.gz

进入解压出的源码文件夹
 cd nginx-0.8.53

配置nginx
 ./configure --prefix=/opt/nginx --with-http_stub_status_module
 解释: --prefix 为安装路径,--with-为需要安装的模块,具体可以运行./configure --help 查看有效模块

编译并安装 nginx
 make && make install
 -------------------------------------
 安装提示:
 ./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.

解决办法:
 从上面的提示可以看出,需要安装PCRE库 
 可以从下面下载,我一开始下载了一个,不过还是不行,后来下一个版本高的,就可以了!
 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
 

解压下载下好的源码包
 tar -zxvf  pcre-8.34.tar.gz
 

进入解压出的源码文件夹
 cd pcre-8.34
 

执行:
 ./configure
 make
 make install
 

-------------------------------------
 

启动 nginx
 /opt/nginx/sbin/nginx
 

-------------------------------------
 提示:
 /opt/nginx/sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
 

解决方法:
 ldd /opt/nginx/sbin/nginx    =====>查看链接库是否正常
 linux-vdso.so.1 =>  (0x00007fff25dff000)
        libcrypt.so.1 => /lib64/libcrypt.so.1 (0x00007f549c495000)
        libpcre.so.1 => not found ======>没找到对应库
        libcrypto.so.10 => /usr/lib64/libcrypto.so.10 (0x00007f549c0b4000)
        libz.so.1 => /lib64/libz.so.1 (0x00007f549be9e000)
        libc.so.6 => /lib64/libc.so.6 (0x00007f549bb0a000)
        libfreebl3.so => /lib64/libfreebl3.so (0x00007f549b892000)
        libdl.so.2 => /lib64/libdl.so.2 (0x00007f549b68e000)
        /lib64/ld-linux-x86-64.so.2 (0x00007f549c6d2000)
 


ln -s libpcre.so.0.0.1 libpcre.so.1
 -------------------------------------

再次启动 nginx
 /opt/nginx/sbin/nginx

查看nginx是否正常启动
 ps -ef |grep nginx

Nginx 的详细介绍请点这里
Nginx 的下载地址请点这里

相关阅读

CentOS 6.2实战部署Nginx+MySQL+PHP

使用Nginx搭建WEB服务器

搭建基于Linux6.3+Nginx1.2+PHP5+MySQL5.5的Web服务器全过程

CentOS 6.3下Nginx性能调优

CentOS 6.3下配置Nginx加载ngx_pagespeed模块

CentOS 6.4安装配置Nginx+Pcre+php-fpm

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/45764cafcfeedfd3198f5cb0cfc78964.html