CentOS 5.6 编译安装Nginx 1.0.4

[root@]#Groupadd www

#wget
#tar zxvf nginx-1.0.4.tar.gz
#cd nginx-1.0.4

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

等再次执行./configure

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

验证nginx运行是否成功
$ curl -i
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

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://127.0.0.1/wyypxp.html