Linux安装sendmail及grafana设置邮件告警遇到问题及解决

    参考:

http://www.111cn.net/sys/CentOS/59429.htm

 

  1. 安装:yum install -y sendmail
  2. 配置Senmail的SMTP认证:vi /etc/mail/sendmail.mc

     



    将上面两行的dnl去掉。在sendmail文件中,dnl表示该行为注释行,是无效的,因此通过去除行首的dnl字符串可以开启相应的设置行。
  3. 设置Sendmail服务的网络访问权限:vi /etc/mail/sendmail.mc 

     



    将127.0.0.1改为0.0.0.0,意思是任何主机都可以访问Sendmail服务。如果仅让某一个网段能够访问到Sendmail服务,将127.0.0.1改为形如192.168.1.0/24的一个特定网段地址。
  4. 生成配置文件:m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf
  5. 启动服务:service sendmail start
  6. 检查服务是否加入自启行列:chkconfig --list |grep sendmail
  7. 测试发送邮箱:mail -s "test" user@sohu.com

 

 

1、

问题:

错误:Cannot  repository metadata (repomd.xml) for repository: influxdb. Please verify its path and try again

解决方案:

打开/etc/yum.repos.d/xxxxxx.repo文件;

将enabled=1改成enabled=0

2、问题:

如果出现:sendmail.mc:10: m4: cannot open `/usr/share/sendmail-cf/m4/cf.m4': No such file or

directory

解决:

说明需要安装sendmail-cf
yum install sendmail-cf

3、问题:

bash: mail: command not found的解决方法

显然mailx没有安装,于是:

yum -y install mailx

3、

查看sendmail日志

cat /var/log/maillog

4、

问题:

  配置sendmail时,修改sendmail.mc,如果将配置语句没有顶格写,容易出现问题,如下: 

[root@localhost mail]# service sendmail restart

Shutting down sendmail:                                    [  OK  ]

Shutting down sm-client:                                   [  OK  ]

Starting sendmail: 554 5.0.0 /etc/mail/sendmail.cf: line 39: unknown configuration line ”

                                                           [FAILED]

Starting sm-client:                                        [  OK  ]

解决:

只要将sendmail.mc中的配置语句顶格写,后重新执行m4 sendmail.mc > sendmail.cf后,执行service sendmail restart或 执行 newaliases生成新的别名记录文件,就不会出现以上错误了!

5、

问题:

查看日志报错:535, 'Error: authentication failed'

解决:

调用163邮箱服务器来发送邮件,我们需要开启POP3/SMTP服务,这时163邮件会让我们设置客户端授权码,这个授权码替代上面代码部分的passwd即可成功发送邮件

6、问题:

 

解决:sql中一定不能有templating变量

 

posted @ 2019-05-23 14:20  贱贱的小帅哥  阅读(497)  评论(0编辑  收藏  举报