Wondering how to Define Global Environment Variables in Nagios? We can help you.
Recently, we had a customer who came across a plugin error. In such a case, we define variables required for plugins globally.
As part of our Server Management Services, we assist our customers with several Nagios queries.
Today, let us discuss the error and resolution.
The Nagios Error
While we set up a check-in Nagios, we may come across an error similar to the following:
[Can’t locate Monitoring/Plugin.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at /usr/local/nagios/libexec/check_rabbitmq_aliveness l BEGIN failed–compilation aborted at /usr/local/nagios/libexec/check_rabbitmq_aliveness line 15.]
However, the execution of check-in and SSH session as the Nagios user executes perfectly.
When we test the plugin in an SSH session, we use a session that has loads of environment variables from the bash profile. This has an extended PATH which allows bash to find the required modules.
In certain scenarios, when the plugin executes by the monitoring engine, these environment variables may not load. Hence the plugin fails to find them.
Define Global Environment Variables in Nagios
Moving ahead, we will define variables required for plugins globally.
Specifically:
- Add the path /usr/local/important_application to the PATH environment
- Add the variable ORACLE_HOME=/usr/lib/oracle/11.2/client64
Initially, we edit a specific file that Nagios checks when it starts:
/etc/sysconfig/nagios
By default, this file does not exist. We create it.
Open an SSH session to Nagios host and type:
vi /etc/sysconfig/nagios
Then we add the following lines to the file:
export PATH=$PATH:/usr/local/important_application export ORACLE_HOME=/usr/lib/oracle/11.2/client64
Now we restart Nagios:
RHEL 7+|CentOS 7+|Debian|Ubuntu 16/18/20
systemctl restart nagios.service
Mod-Gearman
If we have Mod-Gearman, we have to perform the following steps on all of our workers.
The methods for workers are different depending on the operating system they run on.
- RHEL 7+|CentOS 7+|Debian|Ubuntu 16/18/20
Since the use systemd which has a different method, referencing existing environment variables like $PATH will not work. If we wish to define the path, we need to define the entire path variable.
To do so, we:
- Re-define the PATH environment to include /usr/local/important_application
- Add the variable ORACLE_HOME=/usr/lib/oracle/11.2/client64
We can do this by editing a specific file that mod-gearman2-worker checks when the service starts:
/etc/sysconfig/mod-gearman2-worker
Then we open an SSH session to Mod-Gearman worker and type:
vi /etc/sysconfig/mod-gearman2-worker
Add the following to the end of the file:
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/usr/local/important_application ORACLE_HOME=/usr/lib/oracle/11.2/client64
Now we reload the daemons and restart the Mod-Gearman worker:
systemctl daemon-reload systemctl restart mod-gearman2-worker.service
- RAM Disk
If we later configure Nagios with a RAM Disk, we will lose the settings we just added. We have to re-add the environment variables and it will work again.
How Can We See The Environment Variables
One way is to create a simple plugin that will output them. From this, we create a command and service, and then we can see the result in the GUI.
Bash script:
#!/bin/bash env | grep -v ‘|’ exit 0
[Need help to define Variables? We can help you]
Conclusion
To conclude, sometimes, when the plugin is executed, environment variables may not load. In such a scenario, our Support Techs define Global Environment Variables in Nagios.
0 Comments