tengine安装问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tengine安装问题相关的知识,希望对你有一定的参考价值。

官方安装文档:http://tengine.taobao.org/document/install.html

首先安装了依赖的pcre,但是安装tengine的时候要指定pcre的安装包路径,而不是编译安装后的prefix路径,具体如下
./configure --prefix=/usr/local/nginx --with-pcre=/usr/local/pcre/
make
报错:

[[email protected] tengine-2.2.0]# make
make -f objs/Makefile
make[1]: Entering directory `/root/software/tengine-2.2.0‘
cd /usr/local/pcre/     && if [ -f Makefile ]; then make distclean; fi     && CC="cc" CFLAGS="-O2 -fomit-frame-pointer -pipe "     ./configure --disable-shared
/bin/sh: line 2: ./configure: 没有那个文件或目录
make[1]: *** [/usr/local/pcre//Makefile] 错误 127
make[1]: Leaving directory `/root/software/tengine-2.2.0‘
make: *** [build] 错误 2
[[email protected] tengine-2.2.0]#

原因:
不是
./configure --prefix=/usr/local/nginx --with-pcre=/usr/local/pcre/
应该是
./configure --prefix=/usr/local/nginx --with-pcre=/root/software/pcre-8.39

以上是关于tengine安装问题的主要内容,如果未能解决你的问题,请参考以下文章

tengine安装问题

centos6.5下tengine-2.2.2简易安装记录

CentOS 7.4 Tengine安装配置详解

Centos 6.5 Tengine 安装流程

Tengine 安装

centos 6.5 x64安装Tengine