第一次发表内容,希望大家多多支持
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=
重写依赖包未安装,如果闲麻烦就直接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
遇到问题可以加我扣扣交流
请点击此处输入图片描述