频道栏目
首页 > 资讯 > Linux > 正文

CentOS 5.6编译安装Nginx 1.0.4

11-07-24        来源:[db:作者]  
收藏   我要投稿

[root@www.linuxidc.comnginx-]#Adduser www

[root@www.linuxidc.comnginx-]#Groupadd www

#wget http://mirrors.sohu.com/nginx/nginx-1.0.4.tar.gz
#tar zxvf nginx-1.0.4.tar.gz
#cd nginx-1.0.4
[root@www.linuxidc.comnginx-0.6.26]#./configure --user=www --group=www --prefix=/usr/local/nginx/ --with-http_stub_status_module --with-openssl=/usr/local/openssl

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

[root@www.linuxidc.com nginx-0.6.26]# rpm -qa|grep pcre
pcre-6.6-1.1
[root@www.linuxidc.com suantop]# yum install pcre
[root@www.linuxidc.com suantop]# rpm -qa|grep pcre
pcre-6.6-1.1
pcre-devel-6.6-1.1

等再次执行./configure

[root@www.linuxidc.com nginx-0.6.26]# ./configure --user=www --group=www --prefix=/usr/local/nginx/ --with-http_stub_status_module --with-openssl=/usr/local/openssl
 
[root@www.linuxidc.com nginx-0.6.26]# make
[root@www.linuxidc.com nginx-0.6.26]# make install
[root@www.linuxidc.com nginx-0.6.26]#/usr/local/nginx/sbin/nginx   启动nginx

验证nginx运行是否成功
$ curl -i http://localhost
HTTP/1.1 200 OK
Server: nginx/0.9.1
Date: Fri, 03 Dec 2010 02:34:01 GMT
Content-Type: text/html
Content-Length: 151
Last-Modified: Fri, 03 Dec 2010 02:00:40 GMT
Connection: keep-alive
Accept-Ranges: bytes

lnmp下nginx和pureftp无法开机自动启动

下面是 /etc/rc.d/rc.local 文件
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
/usr/local/nginx/sbin/nginx

相关TAG标签
上一篇:Ubuntu Desktop变为Ubuntu Server服务器版的方法
下一篇:面对强大的人人网 给学院SNS网站的运营思路
相关文章
图文推荐

关于我们 | 联系我们 | 广告服务 | 投资合作 | 版权申明 | 在线帮助 | 网站地图 | 作品发布 | Vip技术培训 | 举报中心

版权所有: 红黑联盟--致力于做实用的IT技术学习网站