编译安装LNMP(Redhat5.4+nginx

Nginx ("engine x") 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器,
因它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名。                                      
  
Nginx不支持对外部程序的直接调用或者解析,所有的外部程序(包括PHP)必须通过FastCGI接口来调用
FastCGI是一个可伸缩地、高速地在HTTP server和动态脚本语言间通信的接口。多数流行的HTTP server都支持FastCGI,
包括Apache、Nginx和lighttpd等,同时,FastCGI也被许多脚本语言所支持,其中就有PHP。

PHP-FPM也是一个第三方的FastCGI进程管理器,它是作为PHP的一个补丁来开发的,在安装的时候也需要和PHP源码一起编译,也就是说PHP-FPM被编译到PHP内核中,因此在处理性能方面更加优秀;同时它在处理高并发方面也比spawn-fcgi引擎好很多,因此,推荐Nginx+PHP/PHP-FPM这个组合对PHP进行解析。


所需要的软件:

nginx-1.0.13.tar.gz
MySQL-5.5.20-linux2.6-i686.tar.gz
php-5.3.6.tar.bz2
   
安装LNMP组件之前的准备工作:
用yum源安装开发包组:
 #yum groupinstall "DevelopmentTools" "Development Libraries"
 #yum install pcre-devel
 #yum groupinstall "X Software Development"
    
编译安装nginx-1.0.13
  一、添加nginx系统组和用户
   # groupadd -r nginx
   # useradd -r -g nginx -s /bin/false -M nginx
 
 二、编译
  #tar xf nginx-1.0.13.tar.gz
          #cd nginx-1.0.13
          #./configure \
  --prefix=/usr \
  --sbin-path=/usr/sbin/nginx \
  --conf-path=/etc/nginx/nginx.conf \
  --error-log-path=/var/log/nginx/error.log \
  --http-log-path=/var/log/nginx/access.log \
  --pid-path=/var/run/nginx/nginx.pid  \
  --lock-path=/var/lock/nginx.lock \
  --user=nginx \
  --group=nginx \
  --with-http_ssl_module \
  --with-http_flv_module \
  --with-http_stub_status_module \
  --with-http_gzip_static_module \
  --http-client-body-temp-path=/var/tmp/nginx/client/ \
  --http-proxy-temp-path=/var/tmp/nginx/proxy/ \
  --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \
  --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \
  --http-scgi-temp-path=/var/tmp/nginx/scgi \
  --with-pcre
    说明:--prefix=/usr 软件安装目录
       --sbin-path=/usr/sbin/nginx  软件的二进制文件目录
      --conf-path=/etc/nginx/nginx.conf 软件的配置文件目录
     --error-log-path=/var/log/nginx/error.log    错误日志
     --http-log-path=/var/log/nginx/access.log   访问日志
    --pid-path=/var/run/nginx/nginx.pid    软件的进程号文件
    --lock-path=/var/lock/nginx.lock  软件的锁文件nginx.lock路径
    --user=nginx    指定所属用户
    --group=nginx   指定所属组
     --with-http_ssl_module 添加了ssl模块支持
     --with-http_flv_module        添加了flv模块支持
     --with-http_stub_status_module
     --with-http_gzip_static_module  添加了静态压缩模块支持  
      --http-client-body-temp-path=/var/tmp/nginx/client/ http             客户端请求临时文件的存放路径
     --http-proxy-temp-path=/var/tmp/nginx/proxy/                         代理访问的临时文件存放路径
     --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/                          fastcgi 临时文件存放路径
     --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi    
   --http-scgi-temp-path=/var/tmp/nginx/scgi
       
  三、安装
      #make
      #make install
  四、测试
     为nginx提供一个启动服务的脚本
#vim /etc/rc.d/init.d/nginx
#!/bin/sh
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig:   - 85 15
# description:  Nginx is an HTTP(S) server, HTTP(S) reverse \
#               proxy and IMAP/POP3 proxy server
# processname: nginx
# config:      /etc/nginx/nginx.conf
# config:      /etc/sysconfig/nginx
# pidfile:     /var/run/nginx.pid


# Source function library.
. /etc/rc.d/init.d/functions


# Source networking configuration.
. /etc/sysconfig/network


# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0


nginx="/usr/sbin/nginx"
prog=$(basename $nginx)


NGINX_CONF_FILE="/etc/nginx/nginx.conf"


[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx


lockfile=/var/lock/subsys/nginx


make_dirs() {
   # make required directories
   user=`nginx -V 2>&1 | grep "configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`
   options=`$nginx -V 2>&1 | grep 'configure arguments:'`
   for opt in $options; do
       if [ `echo $opt | grep '.*-temp-path'` ]; then
           value=`echo $opt | cut -d "=" -f 2`
           if [ ! -d "$value" ]; then
               # echo "creating" $value
               mkdir -p $value && chown -R $user $value
           fi
       fi
   done
}


start() {
    [ -x $nginx ] || exit 5
    [ -f $NGINX_CONF_FILE ] || exit 6
    make_dirs
    echo -n $"Starting $prog: "
    daemon $nginx -c $NGINX_CONF_FILE
    retval=$?
    echo
    [ $retval -eq 0 ] && touch $lockfile
    return $retval
}


stop() {
    echo -n $"Stopping $prog: "
    killproc $prog -QUIT
    retval=$?
    echo
    [ $retval -eq 0 ] && rm -f $lockfile
    return $retval
}


restart() {
    configtest || return $?
    stop
    sleep 1
    start
}


reload() {
    configtest || return $?
    echo -n $"Reloading $prog: "
    killproc $nginx -HUP
    RETVAL=$?
    echo
}


force_reload() {
    restart
}


configtest() {
  $nginx -t -c $NGINX_CONF_FILE
}


rh_status() {
    status $prog
}


rh_status_q() {
    rh_status >/dev/null 2>&1
}


case "$1" in
    start)
        rh_status_q && exit 0
        $1
        ;;
    stop)
        rh_status_q || exit 0
        $1
        ;;
    restart|configtest)
        $1
        ;;
    reload)
        rh_status_q || exit 7
        $1
        ;;
    force-reload)
        force_reload
        ;;
    status)
        rh_status
        ;;
    condrestart|try-restart)
        rh_status_q || exit 0
            ;;
    *)
        echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
        exit 2
esac
     
     修改主配置文件,设置其Pid文件的路径:
     vim /etc/httpd/httpd.conf
      添加此行:PidFile "/var/rum/httpd.pid"


     修改启动文件的权限使其可执行:
      #chmod +x /etc/rc.d/init.d/nginx


     开机启动
      #chkconfig --add nginx
      #chkconfig nginx on


     启动服务
      #service nginx start


     查看端口是否开启
      netstat -tnlp |grep :80 
      用浏览器可以访问

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

转载注明出处:http://www.heiqu.com/264efde1a974595ed6ca4c70d9da0e26.html