欢迎光临
我们一直在努力

如何用脚本安装部署openresty

如何用脚本安装部署openresty?相信大部分人都还没学会这个技能,为了让大家学会,给大家总结了以下内容,话不多说,一起往下看吧。

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

#!/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

看完上述内容,你们掌握用脚本安装部署openresty的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注云搜网行业资讯频道,感谢各位的阅读!

赞(0)
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。