Bobcares

Nagios No lock file found in /var/run/nagios – How to fix

by | Apr 10, 2021

Wondering how to fix the ‘Nagios No lock file found in /var/run/nagios’ error in your Nagios? We can help you.

Often Nagios users report getting this error message when they restart the Nagios service.

Here at Bobcares, we get requests from our customers to fix similar issues as a part of Server Management Services.

Today let’s see how our Support Engineers fix this issue for our customers.

What causes ‘Nagios No lock file found in /var/run/nagios’ error 

Before going into the solution for ‘Nagios: No lock file found’ let’s see the cause for this issue.

This is often seen when we start or restart the Nagios service.

We will see the following message:

Running configuration check… Stopping nagios: No lock file found in /var/run/nagios
Starting nagios: Running configuration check… done.

If we check the status of the service using the following command:

service nagios status

It will report as Nagios is not running:

However when we check the processes using the following command:

ps aux | grep nagios.cfg

We can see that it is running:

nagios 1735 0.0 0.0 7788 1592 ? Ss 13:39 0:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios 1767 0.0 0.0 7272 628 ? S 13:39 0:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg

Some changes were introduced in Nagios Core 4.3.3 related to nagios.lock file. These changes require an update to nagios.cfg file. Otherwise, we will most likely experience this error.

How to fix ‘Nagios No lock file found in /var/run/nagios’

The fix is to update the nagios.cfg file to point to /var/run/nagios.lock.

We can do this with the following commands.

After that, we need to install the latest service from the source code.

Also, we need to kill the existing Nagios processes and start the Nagios service.

CentOS|RHEL

1. For updating nagios.cfg we can use the following command:

sed -i ‘s/^lock_file=.*/lock_file=\/var\/run\/nagios.lock/g’ /usr/local/nagios/etc/nagios.cfg

2. After that, for installing the Service/Daemon we can use the following commands:

cd /tmp

wget -O nagioscore.tar.gz https://github.com/NagiosEnterprises/nagioscore/archive/nagios-4.4.5.tar.gz
tar xzf nagioscore.tar.gz
cd /tmp/nagioscore-nagios-4.4.5/
./configure
make all

3. Then we can execute the following commands:

CentOS 5.x/6.x|RHEL 5.x/6.x

make install-init

CentOS 7.x|RHEL 7.x

make install-init
systemctl daemon-reload

4. Then we will kill existing Nagios processes using the following commands:

ps aux | egrep “PID|nagios.cfg”

The following output can be seen:

USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
nagios 1735 0.0 0.0 7788 1596 ? Ss 13:39 0:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios 1767 0.0 0.0 7272 628 ? S 13:39 0:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg

Now kill the two Nagios processes, usually, the first one (1735) will automatically kill the child process (1767).
We can do this with the following command:

kill 1735

5. Finally, we can start Service/Daemon

The following commands will start Nagios Core.

CentOS 5.x/6.x|RHEL 5.x/6.x

service nagios start

CentOS 7.x|RHEL 7.x

systemctl stop nagios.service
systemctl start nagios.service

We can confirm that Nagios is running by using the following commands:

CentOS 5.x/6.x|RHEL 5.x/6.x

service nagios status

CentOS 7.x|RHEL 7.x

systemctl status nagios.service

Ubuntu

1. For updating nagios.cfg we can use the following command:

sudo sh -c “sed -i ‘s/^lock_file=.*/lock_file=\/var\/run\/nagios.lock/g’ /usr/local/nagios/etc/nagios.cfg”

2. After that, for installing the Service/Daemon we can use the following commands:

Ubuntu 14.x

sudo make install-init

Ubuntu 15.x/16.x/17.x

sudo make install-init
sudo systemctl daemon-reload

3. Then we will kill existing Nagios processes using the following commands:

ps aux | egrep “PID|nagios.cfg”

The output will be something like this:

USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND

nagios 1735 0.0 0.0 7788 1596 ? Ss 13:39 0:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios 1767 0.0 0.0 7272 628 ? S 13:39 0:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg

Now kill the two Nagios processes usually, the first one (1735) will automatically kill the child process (1767):

sudo kill 1735

4. Finally, we can start Service/Daemon

Ubuntu 14.x

sudo service nagios start

Ubuntu 15.x/16.x/17.x

A stop is required first, even though the processes are not running. This appears to be a systemd feature.

sudo systemctl stop nagios.service
sudo systemctl start nagios.service

We can confirm that Nagios is running by using the following commands:

Ubuntu 14.x

sudo service nagios status


Ubuntu 15.x/16.x/17.x

sudo systemctl status nagios.service

Debian

All steps on Debian require to run as root. To become root simply run:

su

All commands from this point onwards will be as root.

1. For updating nagios.cfg we can use the following command:

sed -i ‘s/^lock_file=.*/lock_file=\/var\/run\/nagios.lock/g’ /usr/local/nagios/etc/nagios.cfg

2. After that, for installing the Service/Daemon we can use the following commands:

Debian 7.x

make install-init

Debian 8.x/9.x

make install-init
systemctl daemon-reload

3. Then we will kill existing Nagios processes using the following commands:

ps aux | egrep “PID|nagios.cfg”

We can see the following output:

USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
nagios 1735 0.0 0.0 7788 1596 ? Ss 13:39 0:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios 1767 0.0 0.0 7272 628 ? S 13:39 0:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg

Now kill the two Nagios processes, usually the first one (1735) will automatically kill the child process (1767):

kill 1735

4. Finally, we can start Service/Daemon

Debian 7.x

service nagios start

Debian 8.x/9.x

A stop is required first, even though the processes are not running. This appears to be a systemd feature.

systemctl stop nagios.service
systemctl start nagios.service

We can confirm that Nagios is running by using the following commands:

Debian 7.x

service nagios status

Debian 8.x/9.x

systemctl status nagios.service

Fedora

1. For updating nagios.cfg we can use the following command:

sed -i ‘s/^lock_file=.*/lock_file=\/var\/run\/nagios.lock/g’ /usr/local/nagios/etc/nagios.cfg

2. After that, for installing the Service/Daemon we can use the following commands:

Once the updated service/daemon is installed, please execute the following commands:

make install-init
systemctl daemon-reload

3. Then we will kill existing Nagios processes using the following commands:

We will execute the following command:

ps aux | egrep “PID|nagios.cfg”

We can see the following output:

USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
nagios 1735 0.0 0.0 7788 1596 ? Ss 13:39 0:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios 1767 0.0 0.0 7272 628 ? S 13:39 0:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg

Now kill the two Nagios processes, usually the first one (1735) will automatically kill the child process (1767):

kill 1735

4. Finally, we can start Service/Daemon

A stop is required first, even though the processes are not running. This appears to be a systemd feature.

systemctl stop nagios.service
systemctl start nagios.service

We can confirm that Nagios is running by using the following commands:

systemctl status nagios.service

FreeBSD

1. For updating nagios.cfg we can use the following command:

sed -i ” ‘s/^lock_file=.*/lock_file=\/var\/run\/nagios.lock/g’ /usr/local/nagios/etc/nagios.cfg

2. After that, for installing the Service/Daemon we can use the following commands:

Once the updated service/daemon is installed, please execute the following commands:

gmake install-init

3. Then we will kill existing Nagios processes using the following commands:

We can execute the following command:

ps aux | egrep “PID|nagios.cfg”

We can see the following output:

USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND
nagios 571 0.0 0.3 19408 3344 – Ss 2:12PM 0:00.06 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios 646 0.0 0.3 19408 3356 – S 2:12PM 0:00.01 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg

Now kill the two Nagios processes usually, the first one (1735) will automatically kill the child process (1767):

kill 1735

4. Finally, we can start Service/Daemon

We can do this using the following command:

service nagios start

We can confirm that Nagios is running by using the following commands:

service nagios status

[Need assistance? We can help you]

Conclusion

In short, we saw how our Support Techs fix ‘Nagios: No lock file found in /var/run/nagios’ error for our customers.

PREVENT YOUR SERVER FROM CRASHING!

Never again lose customers to poor server speed! Let us help you.

Our server experts will monitor & maintain your server 24/7 so that it remains lightning fast and secure.

GET STARTED

var google_conversion_label = "owonCMyG5nEQ0aD71QM";

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

Speed issues driving customers away?
We’ve got your back!

Privacy Preference Center

Necessary

Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure areas of the website. The website cannot function properly without these cookies.

PHPSESSID - Preserves user session state across page requests.

gdpr[consent_types] - Used to store user consents.

gdpr[allowed_cookies] - Used to store user allowed cookies.

PHPSESSID, gdpr[consent_types], gdpr[allowed_cookies]
PHPSESSID
WHMCSpKDlPzh2chML

Statistics

Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting information anonymously.

_ga - Preserves user session state across page requests.

_gat - Used by Google Analytics to throttle request rate

_gid - Registers a unique ID that is used to generate statistical data on how you use the website.

smartlookCookie - Used to collect user device and location information of the site visitors to improve the websites User Experience.

_ga, _gat, _gid
_ga, _gat, _gid
smartlookCookie
_clck, _clsk, CLID, ANONCHK, MR, MUID, SM

Marketing

Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third party advertisers.

IDE - Used by Google DoubleClick to register and report the website user's actions after viewing or clicking one of the advertiser's ads with the purpose of measuring the efficacy of an ad and to present targeted ads to the user.

test_cookie - Used to check if the user's browser supports cookies.

1P_JAR - Google cookie. These cookies are used to collect website statistics and track conversion rates.

NID - Registers a unique ID that identifies a returning user's device. The ID is used for serving ads that are most relevant to the user.

DV - Google ad personalisation

_reb2bgeo - The visitor's geographical location

_reb2bloaded - Whether or not the script loaded for the visitor

_reb2bref - The referring URL for the visit

_reb2bsessionID - The visitor's RB2B session ID

_reb2buid - The visitor's RB2B user ID

IDE, test_cookie, 1P_JAR, NID, DV, NID
IDE, test_cookie
1P_JAR, NID, DV
NID
hblid
_reb2bgeo, _reb2bloaded, _reb2bref, _reb2bsessionID, _reb2buid

Security

These are essential site cookies, used by the google reCAPTCHA. These cookies use an unique identifier to verify if a visitor is human or a bot.

SID, APISID, HSID, NID, PREF
SID, APISID, HSID, NID, PREF