编写shell脚本实现tomcat定时重启

最近我在学生价买的低配服务器上部署了一个很吃内存的网页,导致 tomcat 内存经常溢出而崩溃。
于是我上网找了一些教程编写了一个简单的每天定时启动 tomcat 的脚本,特此记录一下
我的环境是 centos 7

  • 1、 在某个目录新建一个 .sh 脚本文件

vim tomcatStart.sh

  • 2、 在 tomcatStart.sh 文件里面写入一下代码

    #!/bin/bash
    /etc/profile
    tomcatPath=“/usr/local/tomcat9”
    binPath=“ t o m c a t P a t h / b i n " e c h o " [ i n f o ] [ tomcatPath/bin" echo "[info][ tomcatPath/bin"echo"[info][(date)]正在监控tomcat,路径:$tomcatPath”
    pid=ps -ef | grep tomcat | grep -w $tomcatPath | grep -v 'grep' | awk '{print $2}'
    if [-n “pid”]; then
    echo “[info][ ( d a t e ) ] t o m c a t 进 程 为 : (date)]tomcat进程为: (date)]tomcatpid”
    echo “[info][$(date)]tomcat已经启动,准备使用shutdown命令关闭”
    $binPath"/shutdown.sh"
    sleep 2
    pid=ps -ef | grep tomcat | grep -w $tomcatPath | grep -v 'grep' | awk '{print $2}'
    if [-n “ p i d " ] ; t h e n e c h o " [ i n f o ] [ pid"]; then echo "[info][ pid"];thenecho"[info][(date)]使用shutdown关闭失败,准备kill进程”
    kill -9 p i d e c h o " [ i n f o ] [ pid echo "[info][ pidecho"[info][(date)]kill进程完毕"
    sleep 1
    else
    echo “[info][ ( d a t e ) ] 使 用 s h u t d o w n 关 闭 成 功 " f i e l s e e c h o " [ i n f o ] [ (date)]使用shutdown关闭成功" fi else echo "[info][ (date)]使shutdown"fielseecho"[info][(date)]tomcat未启动”
    fi
    echo “[info][$(date)]准备启动tomcat”
    $binPath"/startup.sh"

  • 3、 修改 tomcatStart.sh 的权限

sudo chmod 777 tomcatStart.sh

  • 4、 添加脚本到 crontab 定时任务

crontab -e

// 第一个是 tomcatStart.sh 的路径, 第二个是将日志输出到某个文件中
00 03 * * * /usr/local/tomcat9/bin/tomcatStart.sh >> /home/zhang/tomcatLog.txt
  • 5、 重启一下 crontab 以生效

systemctl restart crond

除了这种手动重启的方法,还有优化 tomcat 的方法,这个等有时间再去探索了

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值