• tengine安装


    下载地址:

    http://tengine.taobao.org/download_cn.html

    $tar -xvzf tengine-2.1.2.tar.gz

    $./configure
    $ make
    $ sudo make install

    安装Nginx时报错

    ./configure:  error: the HTTP rewrite module requires the PCRE library.

    安装pcre-devel解决问题
    yum -y install pcre-devel

    ./configure: error: C compiler cc is not found

    解决:

    yum install gcc

    错误提示:./configure: error: the HTTP cache module requires md5 functions
    from OpenSSL library.   You can either disable the module by using
    --without-http-cache option, or install the OpenSSL library into the system,
    or build the OpenSSL library statically from the source with nginx by using
    --with-http_ssl_module --with-openssl=<path> options.

    解决办法:

    yum  -y install openssl openssl-devel

    总结:

    yum -y install pcre-devel openssl openssl-devel

    ./configure --prefix=/usr/local/nginx

    make

    make install

    一切搞定

    [root@webserver1 tengine]#  /usr/local/nginx/sbin/nginx   #启动nginx 

    [root@webserver1 tengine]# ./sbin/nginx -s stop
    [root@webserver1 tengine]# ./sbin/nginx -s reload   #这个很常用哦,平滑更新配置。


    chown nobody.nobody -R /usr/local/nginx/html 
    chmod 700 -R /usr/local/nginx/html 

    四、设置Tengine开机启动

      vi /etc/rc.d/init.d/nginx  #编辑启动文件添加下面内容

    #!/bin/bash
    # Tengine Startup script# processname: nginx
    # chkconfig: - 85 15
    # description: nginx is a World Wide Web server. It is used to serve
    # pidfile: /var/run/nginx.pid
    # config: /usr/local/nginx/conf/nginx.conf
    nginxd=/usr/local/nginx/sbin/nginx
    nginx_config=/usr/local/nginx/conf/nginx.conf
    nginx_pid=/usr/local/nginx/logs/nginx.pid
    RETVAL=0
    prog="nginx"
    # Source function library.
    . /etc/rc.d/init.d/functions
    # Source networking configuration.
    . /etc/sysconfig/network
    # Check that networking is up.
    [ ${NETWORKING} = "no" ] && exit 0
    [ -x $nginxd ] || exit 0
    # Start nginx daemons functions.
    start() {
    if [ -e $nginx_pid ];then
    echo "tengine already running...."
    exit 1
    fi
    echo -n $"Starting $prog: "
    daemon $nginxd -c ${nginx_config}
    RETVAL=$?
    echo
    [ $RETVAL = 0 ] && touch /var/lock/subsys/nginx
    return $RETVAL
    }
    # Stop nginx daemons functions.
    stop() {
    echo -n $"Stopping $prog: "
    killproc $nginxd
    RETVAL=$?
    echo
    [ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /usr/local/nginx/logs/nginx.pid
    }
    reload() {
    echo -n $"Reloading $prog: "
    #kill -HUP `cat ${nginx_pid}`
    killproc $nginxd -HUP
    RETVAL=$?
    echo
    }
    # See how we were called.
    case "$1" in
    start)
    start
    ;;
    stop)
    stop
    ;;
    reload)
    reload
    ;;
    restart)
    stop
    start
    ;;
    
    status)
    status $prog
    RETVAL=$?
    ;;
    *)
    echo $"Usage: $prog {start|stop|restart|reload|status|help}"
    exit 1
    esac
    exit $RETVAL
    

      保存退出

    chmod 775 /etc/rc.d/init.d/nginx   #赋予文件执行权限
    chkconfig  --level 012345 nginx on   #设置开机启动
    /etc/rc.d/init.d/nginx restart  
    

      四、配置Tengine
    将nginx初始配置文件备份,我们要重新创建配置文件.

    mv /usr/local/nginx/conf/nginx.conf /usr/local/nginx/conf/nginx.conf.bak
    
    创建nginx用户www
    
    groupadd www
    useradd -g www www
    

      其余配置详见:

    http://www.cnblogs.com/littlehb/archive/2013/04/02/2994686.html

  • 相关阅读:
    合并果子
    在线最小值问题
    沙盒机制(sandBox)
    简单地址簿?
    浅拷贝、深拷贝
    NSFileManager、NSFileHandle
    NSDate、NSCalendar、NSDateFormatter
    归档
    类目、延展、协议
    动态类型
  • 原文地址:https://www.cnblogs.com/jifeng/p/5128860.html
Copyright © 2020-2023  润新知