How to Automatically Recover Tomcat From Crashes

时间:2018-09-03 13:33:18

标签: java tomcat cron redhat

My tomcat crashes occasionally . SO I want to run a scheduler so that at the time of crash , tomcat restart automatically . Here is my logic :

every few minutes {
  check tomcat status;

  if (status is "not running") {
    start tomcat;
  }
}

I am following this lesson上的单击事件打开的选项卡的引用。但是我没有“ /etc/init.d/tomcat”文件。我也没有此文件“ $ TOMCAT_HOME / bin / tomcat.pid”。所以我不能按照上面的教程。

我在互联网上进行了很多搜索,但该主题没有任何内容。请帮助我,以便我编写一个崩溃时自动启动tomcat的脚本。提前致谢 。

0 个答案:

没有答案