Nagios and DB Oracle (check_Oracle_instant)


 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Nagios and DB Oracle (check_Oracle_instant)
# 1  
Old 11-05-2013
Nagios and DB Oracle (check_Oracle_instant)

hi all!
I installed Nagios on my CentOs virtual Machine.
I downloaded the plugin named 'check_oracle_instant' to control oracle services and for monitor the state of DB.
I copied the script in the path /usr/local/nagios/libexex
and i put 'nagios' like owner for the script.

In the path
Code:
/usr/local/nagios/etc/object

, i modified the file 'commands.cfg' adding

Code:
define command {
command_name check_oracle_instant
command_line ...
}

I definied the service in another file and i runned the command
Code:
/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg

No error i received!!!
I restarted nagios, but the script don't works!!!


nagios says :
(Return code of 126 is out of bounds - plugin may be missing)

if i try to run the script with the nagios owner I received
Code:
/usr/bin/perl^M

bad interpreter: No such file or directory


waiting for your help...

ps: my db is a remote db..

Last edited by jim mcnamara; 11-05-2013 at 07:46 AM..
# 2  
Old 11-05-2013
You used an editor on a Windows PC, then saved the file to UNIX. See the ^M

That is an unwanted artifact from windows carriage control.

You need to go back to your editor and save the edits you made using UNIX carriage control. If that is not possible then, for any file UNIX you messed with on your PC: change it back to UNIX carriage control with the dos2unix command.
Assuming you have the usual GNU version dos2unix
Code:
dos2unix [filename]

Be sure to check your man page for exact syntax. First.
# 3  
Old 11-05-2013
ok.... now the error is ..

Code:
bash: /usr/local/nagios/libexec/check_oracle_instant: /usr/bin/perl/: bad interpreter: Not a directory


Last edited by JanePisk; 11-12-2013 at 11:11 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Identify a specific environment Oracle variable to connect a remote Oracle database ?

Good evening I nned your help pls, In an unix server i want to connect to a remote oracle databse server by sqlplus. I tried to find out the user/passwd and service name by env variable and all Ive got is this: ORACLE_SID_REPCOL=SCL_REPCOL ORACLE_SID=xmeta ORACLE_SID_TOL=SCL_PROTOLCOL... (2 Replies)
Discussion started by: alexcol
2 Replies

2. Infrastructure Monitoring

Nagios check dependent on second nagios server

We have a dual Nagios server setup. One is setup for internal server monitoring on our LAN, while the second Nagios server is hosted externally and is used for external checks only such as URL and ping checks form the WAN side. I was wondering if there is any way to setup cross dependencies... (1 Reply)
Discussion started by: eugenes18t
1 Replies

3. Red Hat

Configure Nagios for Oracle

Hi, I have recently configured nagios for monitoring some of my production servers and it works fine but now I need to monitor my Oracle RAC servers. I have downloaded the following plugin (check_oracle-cluster) and have installed it on one of my RAC servers. Nagios Exchange - Check... (7 Replies)
Discussion started by: Duffs22
7 Replies
Login or Register to Ask a Question