第一次发表内容,但愿你们多多支持linux
1,下载文件就很少说了,从官方下载便可,这里用的版本为nginx-1.5.12,目前是最新版nginx
2,安装时遇到了一些问题,须要安装重写依赖包等,以下所示,ui
解压后运行./configure --prefix=/usr/local/environment/reverse-proxy/nginx --with-http_stub_status_module时报了以下错误:搜索引擎
./configure: error: the HTTP rewrite module requires the PCRE library.3d
You can either disable the module by using --without-http_rewrite_moduleblog
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安装,不然本身去下载安装,这里我本身下载安装的 it
可是安装的时候仍是出错了 configure: error: You need a C++ compiler for C++ support. 郁闷的io
这里遇到了一个小插曲,因防火墙的拦截全部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
遇到问题能够加我扣扣交流
请点击此处输入图片描述