Nagios Fusion Uninstall

This support forum board is for questions relating to Nagios Fusion.
Locked
Elvis
Posts: 2
Joined: Sat Mar 05, 2016 9:48 am

Nagios Fusion Uninstall

Post 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
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: Nagios Fusion Uninstall

Post 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.
Be sure to check out our Knowledgebase for helpful articles and solutions!
Locked