I have recently installed Zabbix Server 6.0 LTS on my Ubuntu 20.04
I want to create scheduled reports. For this purpose I executed the following commands:
Install Zabbix Web Service
sudo apt-get install zabbix-web-service
Edit the zabbix_web_service.conf file
sudo vim /etc/zabbix/ zabbix_web_service.conf
Edited Allowed IP to AllowedIP = 127.0.0.1,::1, <MyIPAdress>
Install chromium for Ubuntu
1. sudo apt-get install libxss1 libappindicator1 libindicator7
2. sudo wget https://dl.google.com/linux/direct/g...rent_amd64.deb
3. sudo apt install ./google-chrome*.deb
Edit the Zabbix_server.conf file
sudo vim /etc/zabbix/ zabbix_server.conf
Add StartReportWriters=1
Add WebServiceURL = http://<MyDNSName>/report
Enable and Restart the Zabbix Server, Zabbix Web Services
sudo systemctl restart zabbix-web-service
sudo systemctl restart zabbix-server zabbix-agent apache2
sudo systemctl enable zabbix-server zabbix-agent apache2
Go to Zabbix frontend -> Administration -> General -> Other ->
Add Frontend URL http://<MyDNSName>/zabbix/zabbix.php
I created a scheduled report from the Reports Tab and the recipients are the Zabbix Administrator. I have updated the Media type of the Zabbix Administrator with my email ID.
Upon trying to send the report, the report generating test is successful but I get the error "Report sending failed for:[email protected]".
What can I do to solve this error?
Comment