如何进行openresty安装部署脚本-创新互联

本篇文章为大家展示了如何进行openresty安装部署脚本,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

创新互联公司专注于中大型企业的成都网站设计、成都网站建设和网站改版、网站营销服务,追求商业策划与数据分析、创意艺术与技术开发的融合,累计客户成百上千,服务满意度达97%。帮助广大客户顺利对接上互联网浪潮,准确优选出符合自己需要的互联网运用,我们将一直专注高端网站设计和互联网程序开发,在前进的路上,与客户一起成长!
  1. 工作中经常部署openresty做了个sh

  2. 压缩吧解压到/opt下执行脚本,将安装到/usr/local/openresty

  3. 脚本如下:


#!/bin/bash
#init dir
autoDir="/usr/local/src"
sourceDir="/opt/openresty"
openrestyTarGz="openresty-1.15.8.2.tar.gz"
opensslTarGz="openssl-1.0.1l.tar.gz"
zlibTarGz="zlib-1.2.8.tar.gz"
pcreTarGz="pcre-8.31.tar.gz"

mkdir -p /usr/local/src/{zlib,pcre,openssl,openresty}

#openresty
cd /usr/local/
if [[ -d openresty ]]; then
echo "WARN: openresty is already installed, exit."
#return
exit
fi

#install Dependent package
#yum install -y gcc gcc-c++ pcre zlib openssl

#untar
cd ${sourceDir}
tar zxvf ${openrestyTarGz} -C /usr/local/src/openresty --strip-component=1  
tar zxvf ${opensslTarGz} -C /usr/local/src/openssl --strip-component=1  
tar zxvf ${zlibTarGz} -C /usr/local/src/zlib --strip-component=1
tar zxvf ${pcreTarGz} -C /usr/local/src/pcre --strip-component=1
chmod -R 777 ${autoDir}

#install openresty

cd ${autoDir}/openresty
./configure --prefix=/usr/local/openresty  --with-http_stub_status_module  --with-stream --with-stream_ssl_module --with-pcre=/usr/local/src/pcre --with-openssl=/usr/local/src/openssl --with-zlib=/usr/local/src/zlib
make && make install
if [[ $? == 0 ]]; then
    cp -fv $sourceDir/openresty.service /usr/lib/systemd/system && systemctl daemon-reload
    echo "OK: openresty is installed, exit."
    else
    echo "ERROR: openresty is NOT installed, exit."
fi
4.源码包如下

上述内容就是如何进行openresty安装部署脚本,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注创新互联-成都网站建设公司行业资讯频道。


名称栏目:如何进行openresty安装部署脚本-创新互联
URL链接:http://ybzwz.com/article/ihgjc.html