linux发邮件及检测网站情况

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命令中

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值