阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

CentOS 6.5下配置Nginx

188次阅读
没有评论

共计 2203 个字符,预计需要花费 6 分钟才能阅读完成。

下载最新版本 Nginx 网址 http://nginx.org/en/download.html

wget http://nginx.org/download/nginx-0.8.53.tar.gz 
 

解压下载下好的源码包
 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 http://www.linuxidc.com/Linux/2013-09/90020.htm

使用 Nginx 搭建 WEB 服务器 http://www.linuxidc.com/Linux/2013-09/89768.htm

搭建基于 Linux6.3+Nginx1.2+PHP5+MySQL5.5 的 Web 服务器全过程 http://www.linuxidc.com/Linux/2013-09/89692.htm

CentOS 6.3 下 Nginx 性能调优 http://www.linuxidc.com/Linux/2013-09/89656.htm

CentOS 6.3 下配置 Nginx 加载 ngx_pagespeed 模块 http://www.linuxidc.com/Linux/2013-09/89657.htm

CentOS 6.4 安装配置 Nginx+Pcre+php-fpm http://www.linuxidc.com/Linux/2013-08/88984.htm

正文完
星哥玩云-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-20发表,共计2203字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中