Andrei Stalbe
Andrei Stalbe

Reputation: 1531

Nagios 4.0.7 upgrade thrown an error: "Unable to get process status"

I have upgraded my nagios core to 4.0.7 and there are some errors when I log in my nagios web interface.

First, there is an error message on the home page: Unable to get process status.

Second, nagios seem not being able to execute any of it's plugin commands which reflects over the localhost : check_ping command returning the following status information: (No output on stdout) stderr: execvp(/opt/nagios/nagios/libexec/check_ping, ...) failed. errno is 2: No such file or directory.

The problem is obvious here, it tries to execute the plugin commands from a wrong directory. After upgrading, all plugin commands are located in /usr/local/nagios/libexec. How do I tell nagios where to look for default commands?

Thank you.

Upvotes: 3

Views: 15147

Answers (4)

Teio
Teio

Reputation: 15

I know this is an old thread but for others who might find it, I had the plugins in a folder different than /opt/nagios/libexec/

What fixed it is to copy the plugins from where they were to the folder which Nagios is expecting them to be.

Eg.: cp -RL /usr/local/nagios/libexec/* /opt/nagios/libexec/

Upvotes: 0

Steve
Steve

Reputation: 1402

For others who end up here, the solution for me was that the files in /usr/local/nagios/sbin had the wrong permissions. Setting them to 755 solved it.

Upvotes: 3

Andrei Stalbe
Andrei Stalbe

Reputation: 1531

inside /etc/nagios there is a resource.cfg file which defines the plugins path inside a $USER1$ variable. Set it to the existing plugins directory, hopefully will work.

Upvotes: 1

Noy
Noy

Reputation: 1268

You need to update your commands.cfg to the right paths.

Nagios commands configuration documentation

Upvotes: 0

Related Questions