셸 모니터링 스 크 립 트 - CDN 모니터링 첫 페이지
cat chk_cdn.sh
#!/bin/bash
#
#script_name:chk_cdn.sh
#check cdn index.html
#Domain name resolution
#
#last update 20130320 by dongnan
#bbs# http://bbs.ywwd.net/
#blog# http://dngood.blog.51cto.com
#
#tail error.log
#curl: (6) name lookup timed out
#variables
#check_time=2 # ,2s
check_count=8 # ,8
fault_count=4 # (4 ),
www_url="http://www.test.com"
domain=www.test.com
sh_dir=/root/sh/
crondir=${sh_dir}crontab
error_log=${crondir}/log/cdn_error.log
flag_file=${crondir}/log/cdn.flag
echo=/bin/echo
curl=/usr/bin/curl
options='--connect-timeout 3 -IL -A "check_cdn_www"'
source ${sh_dir}/CONFIG
#main
test -e "${crondir}/log" || mkdir -p "${crondir}/log"
#true
if $curl $options $www_url > /dev/null 2>&1 ;then
#flag
if [ -f $flag_file ];then
#sms
#for mobile in $MOBILES; do
#$echo "cdn_www ok" | /usr/local/bin/gammu --sendsms TEXT "$mobile" -unicode
#$echo "cdn_www_index.html ok"
$done
#email
for mail in $MAILS;do
$echo "$domain ok" | mail -s "cdn ok" $mail
done
#flag
test -e "$flag_file" && rm -f "$flag_file"
fi
#false
else
#flag
test -e $flag_file && exit 0
check_failed=0
#
for((i=1;i<="$check_count";i++));do
check_date=$(date '+ %F %T')
#curl
if ! $curl $options $www_url > /dev/null 2>&1;then
# 1
((check_failed++))
#error.log
$echo "$(/bin/date +'%F %T') $www_url $check_failed fault" >> "$error_log"
/usr/bin/dig "$domain" >> "$error_log"
#
sleep 1
fi
done
#
if [ "$check_failed" -gt "$fault_count" ];then
#sms
#for mobile in $MOBILES;do
#$echo "www_cdn_index.html error" | /usr/local/bin/gammu --sendsms TEXT "$mobile" -unicode
#/bin/date +'%F %T' && $echo "www_cdn_index.html error"
#done
#email
for mail in $MAILS;do
$echo "$domain error" | mail -s "cdn error" $mail
done
#flag
$echo "cdn_www_index.html error" > "$flag_file"
#log
fi
fi
# 종료 더 많은 요청: 링크 ux 시스템 운영 37275208 vmware 가상 화 166682360
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ZSH에서 물고기까지ZSH는 수년 동안 내 기본 셸이었습니다. 이제 몇 달 동안 사용하면서 ZSH 구성에 대해 몇 가지 사항을 발견했습니다. 우리는 을 제공하는 시스템과 더 빨리 상호 작용하는 경향이 있습니다. 내.zshrc 구성에는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.