Ai
2 Star 3 Fork 2

xrkmonitor/monitor_apache_log

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
start.sh 823 Bytes
一键复制 编辑 原始数据 按行查看 历史
xrkmonitor 提交于 2020-09-16 18:31 +08:00 . up
#!/bin/bash
proc=xrk_monitor_apache_log
Count=`pgrep -f $proc -l |wc -l`
if [ $Count -gt 0 ]; then
echo "already start"
exit 0
fi
rm _manual_stop_ > /dev/null 2>&1
if [ ! -x ./install_env.sh ]; then
echo "start failed, not find file: install_env.sh!"
exit 1
fi
. ./install_env.sh
if [ ! -f "$APACHE_CFG_FILE" ]; then
echo "start failed, not find file: $APACHE_CFG_FILE !"
exit 1
fi
cat "$APACHE_CFG_FILE" |grep "#CustomLog" > /dev/null 2>&1
if [ $? -eq 0 ]; then
sed -i 's/#CustomLog/CustomLog/' "$APACHE_CFG_FILE"
fi
$APACHE_CMD restart > /dev/null 2>&1
count=0
while [ $count -lt 3 ]
do
ct=`pgrep -f $proc -l |wc -l`
if [ $ct -gt 0 ]; then
echo "start ok, count:$ct"
exit 0
fi
sleep 1
count=`expr $count + 1`
done
echo "start $proc failed !"
exit 1
Loading...
马建仓 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

搜索帮助