zabbix邮箱告警配置

zabbix邮箱告警配置

前期准备环境 1、确保server和agent1端的防火墙和selinux处于关闭状态
2、设置server端的主机名为server.example.com agent1端的主机名为agent1.example.com
3、分别修改server和agent1端的/etc/hosts文件
192.168.253.140 server.example.com server
192.168.253.139 agent.example.com agent

1、安装postfix软件

[root@server ~]# yum -y install postfix

2、修改postfix的主配置文件,并重启服务和设置下次启动生效

[root@server ~]# vim /etc/postfix/main.cf
在该行后面加上$mydomain
mydestination = $myhostname, localhost.$mydomain, localhost,$mydomain
[root@server ~]# systemctl restart postfix.service 
[root@server ~]# systemctl enable postfix.service

3、安装mailx软件包

你可能感兴趣的:(zabbix,linux,服务器)