栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > 服务器

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

服务器 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

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 "33[31;1mplease input the app which you need restart...33[0m"  
 exit 1  
fi  
  
base_dir=/Users/huangyunxing/documents/work/www  
if [ ! -d ${base_dir}/$1 ]; then  
  echo -e "33[31;1mcan't find the directory [${base_dir}/$1] or the [${base_dir}/$1] is no a directory, please check it...33[0m"  
  exit 1  
fi  
  
if [ ! -f ${base_dir}/$1/conf/server.xml ]; then  
  echo -e "33[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...33[0m"  
  exit 1  
fi  
  
if [ ! -d ${base_dir}/$1/webapps ]; then  
  echo -e "33[31;1mcan't find the directory [${base_dir}/$1/webapps] or the [${base_dir}/$1/webapps] is not a directory, please check it...33[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 "33[44;38;1mthe tomcat is not running, begin startup...33[0m"  
else  
 echo -e '33[45;35;1mcurrent running pid is' $res',begin to stopping...33[0m' 
 kill -9 `ps aux | grep $1|grep "$JAVA_HOME/bin/java"|egrep -v "grep"|awk '{print $2}'` && echo -e '33[45;35;1mtomcat killed successfully33[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 "33[44;32;1mTomcat startup finished...33[0m"  
pid=`ps aux | grep $1|grep "$JAVA_HOME/bin/java"|egrep -v "grep"|awk '{print $2}'`  
echo -e "33[46;38;1m new running pid is ${pid}...33[0m"  

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

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/181698.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号