Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
stop_docker.sh 270 Bytes
Copy Edit Raw Blame History
xrkmonitor authored 2020-12-07 10:42 . addsh
#!/bin/bash
mid=`pgrep -f mysqld`
if [ $? -eq 0 -a "$mid" != '' ]; then
kill $mid
fi
hid=`pgrep -f httpd-prefork`
if [ $? -eq 0 -a "$hid" != '' ]; then
apachectl stop
fi
cd slog_mtreport_client
./stop_plugin.sh
cd -
cd tools_sh
./stop_all.sh
cd ..
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化