微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Tengine安装

一、下载

下载地址:http://tengine.taobao.org/ 选择版本下载

cd ~

下载安装包
wget -c http://tengine.taobao.org/download/tengine-2.3.0.tar.gz

二、安装

解压
tar -zxvf tengine-2.3.0.tar.gz

先安装依赖
yum install gcc-c++
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel

执行配置,检查编译环境(/usr/local/tengine/为安装目录)
./configure --prefix=/usr/local/tengine/

运行安装
make && make install

添加心跳包模块
./configure --prefix=/usr/local/tengine --add-module=./modules/ngx_http_upstream_check_module

再次运行安装
make && make install

创建文件夹logs
mkdir /usr/local/tengine/logs

进入/etc/init.d创建启动脚本,vi Nginx修改Nginx=””和Nginx_CONF_FILE=””目录

#!/bin/bash
#
# chkconfig: - 85 15
# description: Nginx is a World Wide Web server. It is used to serve
# 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/local/tengine/sbin/Nginx"
prog=$(basename $Nginx)

Nginx_CONF_FILE="/usr/local/tengine/conf/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: "
#  -HUP是Nginx平滑重启参数  
   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

赋予执行权限
chmod 755 Nginx

设置自动启动和注册启动服务
chkconfig --add Nginx
chkconfig Nginx on

启动重启重新装载
service Nginx start|stop|reload

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐