linux 系统之重启tomcat 服务器的小脚本

本文介绍了一个用于重启放置在/opt目录下的Tomcat服务器的Shell脚本。该脚本首先确认用户是否确定要重启服务器,然后检查Tomcat安装目录是否存在及是否有执行权限,并最终执行重启操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

我的tomcat服务器 是放在/opt 文件下面的 ,脚本路径要对应好哦!





#!/bin/bash

#program

#this progarm is restart tomcat srever

#history

#2016/11/30 lilei frist release

PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin

export PATH

read -p "are you sure (y/n) you want to restart the tomcat server:"  isornot

if [ "${isornot}"=="y" -o "${isornot}"=="Y" ]; then
   if test -d /opt/apache-tomcat-8.5.4 ; then
     if test  -x /opt/apache-tomcat-8.5.4/bin/shutdown.sh  -a   /ope/apache-tomcat-8.5.4/bin/startup.sh; then
        /opt/apache-tomcat-8.5.4/bin/shutdown.sh
        /opt/apache-tomcat-8.5.4/bin/startup.sh
        else
          echo "you do not have access to this file"
      fi
   else
       echo "this directory does not exist!"
   fi
  echo "restart success"
  exit 0
   else
      echo  " server does not restart!"
      exit 0
fi


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值