tengine部署

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

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章