您的位置:首页 > 其它

tengine部署

2018-02-01 14:34 197 查看

1.创建应用用户

useradd nginx -s /sbin/nologin -M

2.安装依赖包(此处安装,自己可选)

yum -y install gcc gcc-c++ autoconf automake
yum -y install pcre pcre-devel
yum -y install openssl openssl-devel
yum -y install  zlib-devel
yum -y install libxml2 libxml2-dev
yum -y install libxslt-devel
yum -y install gd-devel
yum -y install perl-devel perl-ExtUtils-Embed
yum -y install GeoIP GeoIP-devel GeoIP-data

3.下载编译安装源码依赖

cd /usr/local/src
wget http://tengine.taobao.org/download/tengine-2.2.1.tar.gz wget http://www.openssl.org/source/openssl-1.0.2.tar.gz wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.gz tar xf tengine-2.2.1.tar.gz
tar xf openssl-1.0.2.tar.gz
tar xf pcre-8.38.tar.gz

cd pcre-8.38
./configure --prefix=/usr/local/pcre
make && make install

cd ../openssl-1.0.2
./config --prefix=/usr/local/openssl
make && make install

mkdir /usr/local/nginx-stable/conf -p
cd ../tengine-2.2.1

./configure \
--user=nginx \
--group=nginx \
--prefix=/usr/local/nginx-stable \
--conf-path=/usr/local/nginx-stable/conf/nginx.conf \
--pid-path=/usr/local/nginx-stable/nginx.pid \
--with-openssl=/usr/local/src/openssl-1.0.2 \
--with-pcre=/usr/local/src/pcre-8.38 \
--with-file-aio \
--with-http_v2_module \
--with-http_ssl_module \
--with-http_upstream_check_module \
--with-http_realip_module \
--with-http_stub_status_module \
--with-http_sub_module \
--with-http_gzip_static_module \
--with-http_addition_module \
--with-http_xslt_module \
--with-http_image_filter_module \
--with-http_geoip_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_degradation_module \
--with-http_auth_request_module \
--with-http_perl_module \
--with-http_slice_module \
--with-select_module \
--with-poll_module \
--with-mail \
--with-mail_ssl_module \
--with-pcre \
--with-pcre-jit \

make && make install

4.软连接必须做的(很多项目都要使用软连接,快捷)

ln -s /usr/local/nginx-stable /usr/local/nginx
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  tengine 部署