Nginx|Tengine的编译安装步骤

时间:2022-05-07
本文章向大家介绍Nginx|Tengine的编译安装步骤,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

练习一下linux的操作命令

tengine的下载地址 http://tengine.taobao.org/download.html

wget http://tengine.taobao.org/download/tengine-2.1.2.tar.gz
tar -xzvf tengine-2.1.2.tar.gz
cd tengine-2.1.2
/configure

安装Nginx|Tengine时报错 ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrite_module option, or install the PCRE library into the system, or build the PCRE library statically from the source with nginx by using --with-pcre=<path> option.

安装pcre-devel解决问题 yum -y install pcre-devel

错误提示:./configure: error: the HTTP cache module requires md5 functions from OpenSSL library. You can either disable the module by using --without-http-cache option, or install the OpenSSL library into the system, or build the OpenSSL library statically from the source with nginx by using --with-http_ssl_module --with-openssl=<path> options.

解决办法:

yum -y install openssl openssl-devel