Hi all
I am installing the plugin and trying certain features, but when viewing, the nagios website shows an unknown status, being that the status information appears correct.
What could be what is failing?
I attached an image
Check_Oracle_health
Re: Check_Oracle_health
Under certain circumstances, the latest version of the DBD::Oracle plugin causes the unknown to be returned by the plugin and if you downgrade that module, it may fix the issue.
Do downgrade it, run the following commands as root. Replace xx.x with the version of the Oracle Instant Client you installed on the server.
After this, see if the status of the plugin changes from unknown to the correct status.
Do downgrade it, run the following commands as root. Replace xx.x with the version of the Oracle Instant Client you installed on the server.
Code: Select all
export ORACLE_HOME=/usr/lib/oracle/xx.x/client64
export LD_LIBRARY_PATH=/usr/lib/oracle/xx.x/client64/lib
cd root
wget http://search.cpan.org/CPAN/authors/id/P/PY/PYTHIAN/DBD-Oracle-1.74.tar.gz
tar -xvzf DBD-Oracle-1.74.tar.gz
cd DBD-Oracle-1.74
perl Makefile.PL -l
make && make test
make install
Be sure to check out our Knowledgebase for helpful articles and solutions!
-
jrojasrock
- Posts: 2
- Joined: Wed Jan 02, 2019 10:59 am
Re: Check_Oracle_health
Thank you very much!
It's works!
Goodbye
It's works!
Goodbye
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Check_Oracle_health
Great!jrojasrock wrote:Thank you very much!
It's works!
Goodbye
Locking thread