CentOS 5.6编译安装Nginx 1.0.4


[root@www.linuxboy.netnginx-]#Adduser www

[root@www.linuxboy.netnginx-]#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.linuxboy.netnginx-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.linuxboy.net nginx-0.6.26]# rpm -qa|grep pcre
pcre-6.6-1.1
[root@www.linuxboy.net suantop]# yum install pcre
[root@www.linuxboy.net suantop]# rpm -qa|grep pcre
pcre-6.6-1.1
pcre-devel-6.6-1.1

等再次执行./configure

[root@www.linuxboy.net 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.linuxboy.net nginx-0.6.26]# make
[root@www.linuxboy.net nginx-0.6.26]# make install
[root@www.linuxboy.net 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

相关内容

    暂无相关文章