码迷,mamicode.com
首页 > 其他好文 > 详细

centos6.5 64位系统安装 tengine

时间:2015-08-07 23:56:30      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

      1 安装pcre

      下载好pcre 上传到服务器 我用的版本是pcre-8.31.tar.gz

tar -zxvf pcre-8.31.tar.gz
cd pcre-8.31
./configure --prefix=/usr/local/pcre
make
make install
make clean

     2 下载proxy_cache插件

       wget http://labs.frickle.com/files/ngx_cache_purge-2.1.tar.gz

       tar -zxvf  ngx_cache_purge-2.1.tar.gz

    3 新建一个用户

       useradd www-data -s /sbin/nologin  #禁止直接登录

     4 安装 tengine

      yum -y install openssl  openssl-devel

      tar -zxvf tengine-2.1.0.tar.gz

      cd tengine-2.1.0

./configure --add-module=/home/www/ngx_cache_purge-2.1
--prefix=/usr/local/nginx
--with-http_stub_status_module
--with-pcre=/home/www/pcre-8.31  (路径为解压的源文件路径 不是安装路径)
--with-http_gzip_static_module
--with-http_realip_module
--with-openssl=/home/www/openssl-1.0.1c (路径为解压的源文件路径 不是安装路径)
--user=www-data --group=www-data

make

make install

后续的部分设置 参考 地址 

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

http://sofar.blog.51cto.com/353572/1289681/

centos6.5 64位系统安装 tengine

标签:

原文地址:http://www.cnblogs.com/jackspider/p/4712243.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!