My /usr/local/nagios/var/spool/xidpe directory has over 400k files which is preventing any other files from being created on /usr.
My Trial had expired and was extended. Does that have anything to do with it? What happens if I clear these files out?
Thanks.
xidpe
-
- Attack Rabbit
- Posts: 2560
- Joined: Thu Feb 12, 2015 12:40 pm
Re: xidpe
The xidpe directory is responsible for holding your perfdata. It's possible that your Nagios XI box is overloaded, which is a reason why xidpe data can stack up. Check out the following FAQ entry and give the procedure a try: https://support.nagios.com/wiki/index.p ... ve_No_Data
-
- Posts: 9117
- Joined: Mon Sep 23, 2013 8:40 am
Re: xidpe
The trial expiration shouldn't have anything to do with that, however you will need to clear those files out. As root, run the following:
This will delete the files which will lose some historical data, but should get you back up and running.
Code: Select all
service nagios stop
cd /usr/local/nagios/var/spool/xidpe
find . -type f -delete
service nagios start
Former Nagios employee
-
- Attack Rabbit
- Posts: 2560
- Joined: Thu Feb 12, 2015 12:40 pm
Re: xidpe
A few checks will need to run for your performance graphs to begin populating properly. Is your xidpe directory creating and emptying files properly on its own? It would be worth watching it for a little while to ensure it's working properly:
Code: Select all
watch -n1 'ls -l /usr/local/nagios/var/spool/xidpe'
-
- Posts: 72
- Joined: Fri Feb 06, 2015 6:47 pm
Re: xidpe
The directory just keeps growing.jolson wrote:A few checks will need to run for your performance graphs to begin populating properly. Is your xidpe directory creating and emptying files properly on its own? It would be worth watching it for a little while to ensure it's working properly:
Code: Select all
watch -n1 'ls -l /usr/local/nagios/var/spool/xidpe'