Tengine简单安装

简介: 跟NGINX一样,没有深入研究配置,因为暂时用不到。。:) 下载2.10,基于NGINX1.6.2的。 我的配置参数如下: ./configure --with-openssl=/root/tengine_pkg/openssl-1.

跟NGINX一样,没有深入研究配置,因为暂时用不到。。:)

下载2.10,基于NGINX1.6.2的。

我的配置参数如下:

./configure --with-openssl=/root/tengine_pkg/openssl-1.0.2d --with-zlib=/root/tengine_pkg/zlib-1.2.8 --with-pcre=/root/tengine_pkg/pcre-8.32

 

参考URL:

http://down.chinaz.com/server/201112/1476_1.htm

  设置tengine开启启动

vi /etc/rc.d/init.d/nginx  #编辑启动文件添加下面内容
#!/bin/bash
# nginx Startup script for the Nginx HTTP Server
# it is v.0.0.2 version.
# chkconfig: - 85 15
# description: Nginx is a high-performance web and proxy server.
# It has a lot of features, but it's not for everyone.
# processname: nginx
# 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 "nginx 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 nginx on #设置开机启动
# /etc/rc.d/init.d/nginx restart
# service nginx restart
目录
相关文章
|
8月前
|
tengine 应用服务中间件 nginx
|
tengine 关系型数据库 MySQL
Tengine 详细安装与配置
Tengine和nginx差不多,方便实用
|
应用服务中间件 nginx tengine
|
tengine 应用服务中间件 Linux
|
tengine Shell 应用服务中间件
|
应用服务中间件 nginx tengine
|
tengine 应用服务中间件 nginx
|
tengine Linux
Tengine安装./configure: error: C compiler cc is not found
CentOS 6.5 下 安装 Tengine 执行配置命令./configure  时提示以下错误:checking for OS + Linux 2.6.32-431.el6.x86_64 x86_64checking for C compiler .
2063 0
|
tengine 应用服务中间件 Linux
CentOS 6.5 下 Tengine 安装记录
Tengine是由淘宝网发起的Web服务器项目。它在Nginx的基础上,针对大访问量网站的需求,添加了很多高级功能和特性。Tengine的性能和稳定性已经在大型的网站如淘宝网,天猫商城等得到了很好的检验。
901 0