华域联盟 Linux Linux 单个tomcat多实例部署shell脚本详解

Linux 单个tomcat多实例部署shell脚本详解

Linux 单个tomcat多实例部署shell脚本详解

步骤:

1. 下载tomcat,解压安装

2.将tomcat下的webapps,conf,temp等目录分别拷至根目录www下A,B,C目录下

3.新建如下脚本restart_tomcat.sh

4.使用restart_tomcat.sh A/B/C

#!/bin/sh  
  
if [ -z $1 ]  
then  
 echo "3[31;1mplease input the app which you need restart...3[0m"  
 exit 1  
fi  
  
base_dir=/Users/huangyunxing/Documents/work/www  
if [ ! -d ${base_dir}/$1 ]; then  
  echo -e "3[31;1mcan't find the directory [${base_dir}/$1] or the [${base_dir}/$1] is no a directory, please check it...3[0m"  
  exit 1  
fi  
  
if [ ! -f ${base_dir}/$1/conf/server.xml ]; then  
  echo -e "3[31;1mcan't find the file [${base_dir}/$1/conf/server.xml] or the [${base_dir}/$1/conf/server.xml] is not a file, please check it...3[0m"  
  exit 1  
fi  
  
if [ ! -d ${base_dir}/$1/webapps ]; then  
  echo -e "3[31;1mcan't find the directory [${base_dir}/$1/webapps] or the [${base_dir}/$1/webapps] is not a directory, please check it...3[0m"  
  exit 1  
fi  
 
export CATALINA_BASE=${base_dir}/$1  
 
if [ -f ${CATALINA_BASE}/setenv.sh ];then  
 . "${CATALINA_BASE}/setenv.sh"  
 echo "=========load setenv.sh finshed========"  
fi  
 
res=`ps aux | grep $1|grep "$JAVA_HOME/bin/java"|egrep -v "grep"|awk '{print $2}'` 
if [ "$res" == "" ]; then  
  echo -e "3[44;38;1mthe tomcat is not running, begin startup...3[0m"  
else  
 echo -e '3[45;35;1mcurrent running pid is' $res',begin to stopping...3[0m' 
 kill -9 `ps aux | grep $1|grep "$JAVA_HOME/bin/java"|egrep -v "grep"|awk '{print $2}'` && echo -e '3[45;35;1mtomcat killed successfully3[0m' 
fi  
  
 
 
rm -fr $CATALINA_BASE/work/* 
rm -fr $CATALINA_BASE/temp/* 
${CATALINA_HOME}/bin/catalina.sh jpda start -config ${base_dir}/$1/conf/server.xml && echo -e "3[44;32;1mTomcat startup finished...3[0m"  
pid=`ps aux | grep $1|grep "$JAVA_HOME/bin/java"|egrep -v "grep"|awk '{print $2}'`  
echo -e "3[46;38;1m new running pid is ${pid}...3[0m"  

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

您可能感兴趣的文章:

本文由 华域联盟 原创撰写:华域联盟 » Linux 单个tomcat多实例部署shell脚本详解

转载请保留出处和原文链接:https://www.cnhackhy.com/58806.htm

本文来自网络,不代表华域联盟立场,转载请注明出处。

作者: sterben

发表回复

联系我们

联系我们

2551209778

在线咨询: QQ交谈

邮箱: [email protected]

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部