Page 1 of 1

Nagios 4 + NagVis

Posted: Sun Aug 12, 2018 9:54 am
by lcontreras
Hello guys!

Does anyone have a well detailed howto for installing nagios core 4 + nagvis ?

Re: Nagios 4 + NagVis

Posted: Mon Aug 13, 2018 11:49 am
by cdienger
The steps in the README included in the nagvis tar.gz file did the trick on my centos 6 install for the most part:

tar xzvf nagvis-1.*tar.gz /tmp
cd /tmp/nagvis-1.*
./install.sh


I did have to install rsync:

yum -y install rsync

And although I'm not sure it was necessary I also installed php-mysql:

yum -y install php-mysql

Finally, it would not start properly until php.ini was edited to point to the location of php modules, which in my case was /usr/lib64/php/modules/:

extension_dir = "/usr/lib64/php/modules/"