|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
欢迎大家来到仓酷云论坛!下载最新版本Nginx网址http://nginx.org/en/download.html
wgethttp://nginx.org/download/nginx-0.8.53.tar.gz
解压下载下好的源码包
tar-zxvfnginx-0.8.53.tar.gz
进进解压出的源码文件夹
cdnginx-0.8.53
设置nginx
./configure--prefix=/opt/nginx--with-http_stub_status_module
注释:--prefix为装置路径,--with-为必要装置的模块,详细能够运转./configure--help检察无效模块
编译并装置nginx
make&&makeinstall
-------------------------------------
装置提醒:
./configure:error:theHTTPrewritemodulerequiresthePCRElibrary.
Youcaneitherdisablethemodulebyusing--without-http_rewrite_module
option,orinstallthePCRElibraryintothesystem,orbuildthePCRElibrary
staticallyfromthesourcewithnginxbyusing--with-pcre=<path>option.
办理举措:
从下面的提醒能够看出,必要装置PCRE库
能够从上面下载,我一入手下手下载了一个,不外仍是不可,厥后下一个版本高的,就能够了!
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
解压下载下好的源码包
tar-zxvfpcre-8.34.tar.gz
进进解压出的源码文件夹
cdpcre-8.34
实行:
./configure
make
makeinstall
-------------------------------------
启动nginx
/opt/nginx/sbin/nginx
-------------------------------------
提醒:
/opt/nginx/sbin/nginx:errorwhileloadingsharedlibraries:libpcre.so.1:cannotopensharedobjectfile:Nosuchfileordirectory
办理***:
ldd/opt/nginx/sbin/nginx=====>检察链接库是不是一般
linux-vdso.so.1=>(0x00007fff25dff000)
libcrypt.so.1=>/lib64/libcrypt.so.1(0x00007f549c495000)
libpcre.so.1=>notfound======>没找到对应库
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-slibpcre.so.0.0.1libpcre.so.1
-------------------------------------
再次启动nginx
/opt/nginx/sbin/nginx
检察nginx是不是一般启动
ps-ef|grepnginx
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们! |
|