tengine安装

1.下载tengine

可以到淘宝官网进行下载 http://tengine.taobao.org/download_cn.html

wget http://tengine.taobao.org/download/tengine-2.2.0.tar.gz


2.解压软件

tar -zxf tengine-2.2.0.tar.gz

3.测试软件的完整性


./configure

出现./configure: error: the HTTP rewrite module requires the PCRE library错误

需要安装RCRE包运行 yum install pcre pcre-devel 进行安装

出现 . /configure: error: SSL modules require the OpenSSL library.错误
需要安装SSL包运行  yum install openssl openssl-devel 进行安装

如果出现
Configuration summary
  + using system PCRE library
  + using system OpenSSL library
  + md5: using OpenSSL library
  + sha1: using OpenSSL library
  + using system zlib library
  + jemalloc library is disabled


  nginx path prefix: "/usr/local/nginx"
  nginx binary file: "/usr/local/nginx/sbin/nginx"
  nginx configuration prefix: "/usr/local/nginx/conf"
  nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
  nginx pid file: "/usr/local/nginx/logs/nginx.pid"
  nginx error log file: "/usr/local/nginx/logs/error.log"
  nginx http access log file: "/usr/local/nginx/logs/access.log"
  nginx http client request body temporary files: "client_body_temp"
  nginx dso module path: "/usr/local/nginx/modules/"
  nginx http proxy temporary files: "proxy_temp"
  nginx http fastcgi temporary files: "fastcgi_temp"
  nginx http uwsgi temporary files: "uwsgi_temp"
  nginx http scgi temporary files: "scgi_temp"
证明安装成功

4.安装gcc

yum -y install gcc

5.安装tengine


运行make 编译
运行 sudo make install 进行安装

6.运行nginx

进入
cd /usr/local/nginx/sbin/

启动

./nginx

通过浏览器输入自己的ip
出现这个证明安装成功

tengine安装_第1张图片



你可能感兴趣的:(linux)