2 Star 3 Fork 1

xrkmonitor/monitor_apache_log

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
stop.sh 928 Bytes
一键复制 编辑 原始数据 按行查看 历史
xrkmonitor 提交于 2020-09-17 10:27 . up
#!/bin/bash
proc=xrk_monitor_apache_log
Count=`pgrep -f $proc -l |wc -l`
if [ $Count -eq 0 ]; then
echo "already stop"
exit 0
fi
if [ ! -x ./install_env.sh ]; then
echo "stop failed, not find file: install_env.sh!"
exit 1
fi
. ./install_env.sh
if [ ! -f "$APACHE_CFG_FILE" ]; then
echo "stop failed, not find file: $APACHE_CFG_FILE !"
exit 1
fi
dpat="#CustomLog"
cat "$APACHE_CFG_FILE" |grep "$dpat" > /dev/null 2>&1
if [ $? -ne 0 ]; then
sed -i "s/CustomLog/$dpat/" "$APACHE_CFG_FILE"
cat "$APACHE_CFG_FILE" |grep "$dpat" > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo "stop failed, add $dpat failed !"
exit 1
fi
fi
$APACHE_CMD restart > /dev/null 2>&1
count=0
while [ $count -lt 5 ]
do
ct=`pgrep -f $proc -l |wc -l`
if [ $ct -eq 0 ]; then
echo "stop ok"
exit 0
fi
sleep 1
count=`expr $count + 1`
done
echo "stop failed !"
exit 1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/xrkmonitorcom/monitor_apache_log.git
git@gitee.com:xrkmonitorcom/monitor_apache_log.git
xrkmonitorcom
monitor_apache_log
monitor_apache_log
master

搜索帮助