温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

如何进行openresty安装部署脚本

发布时间:2021-09-26 16:11:23 来源:亿速云 阅读:158 作者:柒染 栏目:系统运维

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

  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安装部署脚本,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI