zzzmh 技术笔记
喜欢编程,乐此不疲
Home
Archives
Tags
About
常用shell脚本 tomcat监控/mysql备份/jar文件启动停止重启 等等
linux
bash
shell
tomcat
mysql
## 常用shell脚本 **1. tomcat监控 自动重启 注意tomcat路径要根据实际情况更改** ```shell #!/bin/sh # 获取tomcat进程ID 注意tomcat路径要根据实际情况更改 TomcatID=$(ps -ef |grep '/root/tomcat/bin'|grep -v 'grep'| awk '{print $2}') # tomcat启动程序 注
More »