Linux服务器运维过程中需要监控系统状况并自动报警,有时有邮件报警的需要,一般Linux发送报警邮件可以通过本地邮箱或外部邮箱服务器,这里用最简单的方法:利用mailx一个小型的邮件发送程序使用外部邮箱即可实现发送邮件功能
1、CentOS服务器默认安装了mailx
若没有安装,使用yum install mailx进行安装
2、vi编辑mail的配置文件/etc/mail.rc
set from=xxxxxx@qq.com
set smtp=smtps://smtp.qq.com:465
set smtp-auth-user=xxxxxx@qq.com
set smtp-auth-password=你的QQ邮箱授权码
set smtp-auth=login
#set smtp-use-starttls 这里是不需要配置的,很多地方没说明,配置了反而会验证失败,所以注释掉;
set ssl-verify=ignore set nss-config-dir=/root/.certs
QQ邮箱的授权码并非QQ邮箱密码
关于邮箱授权码的说明参考官方帮助文档:
https://service.mail.qq.com/cgi-bin/help?subtype=1&&no=1001256&&id=28
3、还需要添加邮箱证书到本地
# 创建证书目录
[root@localhost ~]# mkdir -p /root/.certs/
# 获取证书内容
[root@localhost ~]# echo -n | openssl s_client -connect smtp.qq.com:465 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/.certs/qq.crt
# 添加证书到数据库
[root@localhost ~]# certutil -A -n "GeoTrust SSL CA" -t "C,," -d ~/.certs -i ~/.certs/qq.crt
[root@localhost ~]# certutil -A -n "GeoTrust Global CA" -t "C,," -d ~/.certs -i ~/.certs/qq.crt
# 列出指定目录下的证书
[root@localhost ~]# certutil -L -d /root/.certs
# 在命令行里发送邮件会提示“Error in certificate: Peer's certificate issuer is not recognized.”这样的证书没有获得认可的警告提示,需要执行下面指明受信任证书、防报错的命令
[root@localhost ~]# certutil -A -n "GeoTrust SSL CA - G3" -t "Pu,Pu,Pu" -d ~/.certs -i ~/.certs/qq.crt
4、发送测试邮件
echo "E-mail Test Content" | mail -s "Alarm Email Test" yuanfan2012@126.com
5、验证自己126邮箱是否收到测试邮件,可以看到已经收到测试邮件
本文参考如下博文实现
https://www.imydl.tech/lnmp/198.html
https://www.jianshu.com/p/b1cdd594c67a
本文分享自微信公众号 - WalkingCloud(WalkingCloud2018)。
如有侵权,请联系 support@oschina.cn 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。
来源:oschina
链接:https://my.oschina.net/u/4113630/blog/4377685