Linux下安装与配置nginx 5

本文讲述了在Linux环境下安装nginx-1.5.12时遇到的依赖问题,包括PCRE库缺失和C++编译器的需求。通过手动下载和安装PCRE库,解决编译错误。在启动nginx时,发现libpcre.so.1库文件找不到,通过创建软链接解决问题。最后,设置了nginx的开机启动项。

1,下载文件就不多说了,从官方下载即可,这里用的版本为nginx-1.5.12,目前是最新版

2,安装时遇到了一些问题,需要安装重写依赖包等,如下所示,

解压后运行./configure --prefix=/usr/local/environment/reverse-proxy/nginx --with-http_stub_status_module时报了如下错误:

./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.

重写依赖包未安装,如果闲麻烦就直接yum安装,否则自己去下载安装,这里我自己下载安装的 

但是安装的时候还是出错了 configure: error: You need a C++ compiler for C++ support. 郁闷的

这里遇到了一个小插曲,因防火墙的拦截所有yum源无法使用,改了一下防火墙配置后OK了

之后就很好解决了 缺什么依赖包就安装什么依赖包即可,yum这个东西很方便的,

3,启动时杯具了,./nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory

输入:ldd which /usr/local/environment/reverse-proxy/nginx/sbin/nginx
which:
ldd: ./which: No such file or directory
/usr/local/environment/reverse-proxy/nginx/sbin/nginx:
        linux-vdso.so.1 =>  (0x00007fff5977a000)
        libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f5208a01000)
        libcrypt.so.1 => /lib64/libcrypt.so.1 (0x00007f52087ca000)
        libpcre.so.1 => not found
        libz.so.1 => /lib64/libz.so.1 (0x00007f52085b3000)
        libc.so.6 => /lib64/libc.so.6 (0x00007f5208220000)
        /lib64/ld-linux-x86-64.so.2 (0x00007f5208c23000)
        libfreebl3.so => /lib64/libfreebl3.so (0x00007f5207fbd000)
        libdl.so.2 => /lib64/libdl.so.2 (0x00007f5207db9000)


发现libpcre.so.1 => not found

那需要手动去链接

输入:ln -s /lib64/libpcre.so.0.0.1 /lib64/libpcre.so.1 具体意思问搜索引擎

然后在启动nginx大功告成


添加开机启动项 :

chkconfig /usr/local/nginx/sbin/nginx 



http://binyan17.iteye.com/blog/1688308


http://www.2cto.com/os/201304/199770.html


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值