Comments on Server monitoring with Icinga 2 and Icingaweb 2 on CentOS 7
Icinga 2 is a scalable OpenSource monitoring software. This tutorial describes the installation of Icinga 2 together with Icingaweb on a CentOS 7 server.
13 Comment(s)
Comments
Muy buen Manual Todo funciona a la perfeccion; por si el pto 80 no le abre en el navegador en centos 7, por linea de comandos agregamos esto:
#firewall-cmd --zone=public --add-port=80/tcp --permanent#firewall-cmd --reload
Bonjour svp j'aimera savoir comment on
- synchronise Icinga2 avec Active Directory
- comment installer Nagvis à partir d'icinga 2
merci d'avance
Thanks a lot for this manual!
You saved me a lot of time :) !
Vi, Wery usefull tutorial! You forgot to set/open http in firewall... firewall-cmd --permanent --zone=public --add-service=http firewall-cmd --permanent --zone=public --add-service=https firewall-cmd --reload Best Regards Krzysztof
good tutorial, thanks
Good job thank you guys.
You also need to install php-ZendFramework-Db-Adapter-Pdo-Mysql
yum install php-ZendFramework-Db-Adapter-Pdo-Mysql
Hi thank you very much for this tutorial!
Please note that you made a typo at the 'monitoring-ido-resource' section almost at the end.
You typed 'Change Username to icnga2'.
Typo in username, should be icinga2. Not a big deal but people who copy paste migt struggle with it :)
Rick
For centos 7 you need these packages :
yum install php php-gd php-intl php-ZendFramework php-ZendFramework-Db-Adapter-Pdo-Mysql
If you can not connect, check the firewall:
firewall-cmd --permanent --add-port=80/tcp
firewall-cmd --reload
That was simply great - thank you!
Had to add optional repo in RHEL7 to get icingaweb2 up & running (php-intl missing).
Thank you for the guide, it was very helpful for me. In addition to the extras in the comments I also had to add:
yum install centos-release-scl-rh
So all extra lines are:
firewall-cmd --permanent --add-port=80/tcp
firewall-cmd --reload
yum install php php-gd php-intl php-ZendFramework php-ZendFramework-Db-Adapter-Pdo-Mysql
yum install centos-release-scl-rh
[30/06/2018]
Hello !
You also need to start PHP FPM.
systemctl start rh-php71-php-fpm.service
systemctl enable rh-php71-php-fpm.service
Regards !
Daniel Paun