1.需要配置/ect/main.rc文件在最后加上
set from=邮箱
set smtp=smtp.exmail.qq.com
set smtp-auth-user=邮箱
set smtp-auth-password=权限密码
set smtp-auth=login
2.检测网站
#!/bin/bash
URLs=(
https://www.baidu.com
)
stat0=0
stat1=0
stat2=0
#监控域名
for URL in ${URLs[*]}
do
/usr/bin/curl --connect-timeout 2 -Lfs $URL >/dev/null || stat0=1
/usr/bin/curl --connect-timeout 2 -Lfs $URL >/dev/null || stat1=1
/usr/bin/curl --connect-timeout 2 -Lfs $URL >/dev/null || stat2=1
if [ $stat0 == 1 ] &&\
[ $stat1 == 1 ] &&\
[ $stat2 == 1 ]
then
echo 'no->' $URL;
<<EOF echo $URL $tips | mail -s '网站报警' 你的邮箱1 你的邮箱2
EOF
fi
#init var default value
stat0=0
stat1=0
stat2=0
echo 'ok->' $URL;
done
echo "finish job"
3.检测磁盘
#!/bin/bash
//报警值
max=80
name='redis'
dlist=(
/dev/vda1
/dev/vdb1
)
for d in ${dlist[*]}
do
use=$(df -hP $d | awk '{print $5}' | tail -1 | sed 's/%$//g')
if [ $use -gt $max ]
then
<<EOF echo $HOSTNAME $name 磁盘 $d 使用量已超过 $max% 目前 $use% | mail -s '磁盘使用报警' 你的邮箱@qq.com
EOF
fi
done
4.推荐个小包,下载文件到本地
yum install lrzsz
sz 文件名
5.添加到crontab命令中