Page 1 of 1

Nagios Fusion Uninstall

Posted: Sat Mar 05, 2016 10:38 pm
by Elvis
Hi everyone.

I need to uninstall my nagios fusion on CentOS 6.5. There's any script to do that? If not, how can i do it manually?

Regards
Elvis Martins e Silva

Re: Nagios Fusion Uninstall

Posted: Mon Mar 07, 2016 11:45 am
by lmiltchev
We don't have an "uninstall" script for Fusion. If this is a VM, you could revert the snapshot.

Otherwise, you could remove Fusion manually.

Important: Be careful with removing Fusion manually if you have anything else (besides Fusion) running on this server! You shouldn't have any other applications running on the Fusion server but I have seen people trying to use Nagios XI and Fusion on the same box... Use the commands below ONLY if you don't have anything else but Fusion running on this server!

Remove all of the prerequisites you previously installed:

Code: Select all

yum -y remove httpd php gd gd-devel dstat rrdtool xinetd php-gd unzip php-pear bind-utils postgresql postgresql-libs postgresql-server php-pgsql postgresql-devel php-odbc openssl openssl-devel unzip rpmdevtools php-xml php-tidy sysstat
Delete nagios user/group:

Code: Select all

userdel -r nagios
groupdel nagios
Remove the "nagiosfusion" directory:

Code: Select all

rm -rf /usr/local/nagiosfusion/
Remove nagios entries in "/etc/sudoers".

Hope this helps.