Actually, this is concerning a log on one of my Linux server - ‘/var/log/messages’. The Linux client is logging multiple messages about xinetd starting and exiting every few seconds.
Is this normal? If so, how much resource is this using up - memory, cpu?
define service{
use basic-service
host_name client2
service_description Swap use
check_command check_nrpe!check_swap
}
define service{
use basic-service
host_name client2
service_description CPU Load
check_command check_nrpe!check_load
}
define service{
use basic-service
host_name client2
service_description VolGroup00-LogVol00
check_command check_nrpe!check_volgrp00_logvol00
}
define service{
use basic-service
host_name client2
service_description VolGroup01-LogVol00
check_command check_nrpe!check_volgrp01_logvol00
}
And, this is the /var/log/messages on client2
Jun 9 14:52:56 client2 xinetd[4273]: START: nrpe pid=2140 from=nag_srv_ip
Jun 9 14:52:56 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2140 duration=0(sec)
Jun 9 14:53:09 client2 xinetd[4273]: START: nrpe pid=2143 from=nag_srv_ip
Jun 9 14:53:09 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2143 duration=0(sec)
Jun 9 14:53:32 client2 xinetd[4273]: START: nrpe pid=2162 from=nag_srv_ip
Jun 9 14:53:32 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2162 duration=0(sec)
Jun 9 14:53:44 client2 xinetd[4273]: START: nrpe pid=2165 from=nag_srv_ip
Jun 9 14:53:44 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2165 duration=0(sec)
Jun 9 14:53:56 client2 xinetd[4273]: START: nrpe pid=2184 from=nag_srv_ip
Jun 9 14:53:56 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2184 duration=0(sec)
Jun 9 14:54:09 client2 xinetd[4273]: START: nrpe pid=2189 from=nag_srv_ip
Jun 9 14:54:09 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2189 duration=0(sec)
Jun 9 14:54:32 client2 xinetd[4273]: START: nrpe pid=2207 from=nag_srv_ip
Jun 9 14:54:32 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2207 duration=0(sec)
Jun 9 14:54:44 client2 xinetd[4273]: START: nrpe pid=2210 from=nag_srv_ip
Jun 9 14:54:44 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2210 duration=0(sec)
Jun 9 14:54:56 client2 xinetd[4273]: START: nrpe pid=2228 from=nag_srv_ip
Jun 9 14:54:56 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2228 duration=0(sec)
Jun 9 14:55:09 client2 xinetd[4273]: START: nrpe pid=2231 from=nag_srv_ip
Jun 9 14:55:09 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2231 duration=0(sec)
Jun 9 14:55:32 client2 xinetd[4273]: START: nrpe pid=2252 from=nag_srv_ip
Jun 9 14:55:32 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2252 duration=0(sec)
Jun 9 14:55:44 client2 xinetd[4273]: START: nrpe pid=2255 from=nag_srv_ip
Jun 9 14:55:44 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2255 duration=0(sec)
Jun 9 14:55:56 client2 xinetd[4273]: START: nrpe pid=2273 from=nag_srv_ip
Jun 9 14:55:56 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2273 duration=0(sec)
Jun 9 14:56:09 client2 xinetd[4273]: START: nrpe pid=2277 from=nag_srv_ip
Jun 9 14:56:09 client2 xinetd[4273]: EXIT: nrpe status=0 pid=2277 duration=0(sec)
As you can see from the sample log, it’s running/checking every minute. How do I prevent this from happening - well at least not run every minute. More like every 5 minutes. As far as I can tell, it’s running normally.