Page 1 of 1
Uninstall AIX agent
Posted: Wed Sep 19, 2012 9:48 am
by srikanth.kallu
Hi,
Is there any way to unistall aix agent cleanly which can delete all the users and packages.
Please help
Re: Uninstall AIX agent
Posted: Wed Sep 19, 2012 10:06 am
by scottwilkerson
running the following should remove the 2 packages and the created user/group
Code: Select all
rpm -e nagios-plugins nrpe-2.13-1
rmuser nagios
rmgroup nagios
Then remove the 2 directories
Code: Select all
rm -rf /opt/nagios
rm -rf /etc/nagios
Re: Uninstall AIX agent
Posted: Wed Sep 19, 2012 11:51 am
by srikanth.kallu
It worked,
Thank You!