Centos 6.5 服务器下面配置邮件客户端 发送报警邮件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos 6.5 服务器下面配置邮件客户端 发送报警邮件相关的知识,希望对你有一定的参考价值。
以Centos 系统为例,确保服务器可以正常连接外网
Centos 6.5 下面默认 安装 postfix
查看
rpm -qa | grep postfix
postfix-2.6.6-2.2.el6_1.x86_64
配置邮件客户端
set smtp=smtp.163.com
set smtp-auth-password=UserPassword
set smtp-auth=login
发送测试邮件 echo "test" | mail -s "subject" [email protected]
登录邮箱查看邮件
应用案列,监控服务器内存每半小时检查一次
监控脚本 + crontab
#!/bin/bash
FreeMem=`free -m | awk ‘NR==3 {print $NF}‘`
Host="192.168.10.32 localhost32.localdomain"
Infor_mesage="Now $Host memory is $FreeMem"
if [ $FreeMem -lt 1200 ];then
echo $Infor_mesage | tee /tmp/message.txt
/bin/mail -s "`date +%F-%T` $Infor_mesage" [email protected] < /tmp/message.txt
else
exit 1
fi
#monitor sys memory
*/30 * * * * /root/scripts/monitor.sh &> /dev/null
本文出自 “sdsca” 博客,请务必保留此出处http://sdsca.blog.51cto.com/10852974/1968208
以上是关于Centos 6.5 服务器下面配置邮件客户端 发送报警邮件的主要内容,如果未能解决你的问题,请参考以下文章
安装CENTOS 6.5 32位(CentOS-6.5-i386)+postfix+dovecot+openwebmail passwd验证的邮件系统