centos6.5 64位系统安装 tengine

时间:2021-12-25 00:38:47

      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/