为什么 Nagios 无法通过事件处理程序启动 Oracle 数据库?

为什么 Nagios 无法通过事件处理程序启动 Oracle 数据库?

我正在尝试使用事件处理程序脚本启动 Oracle 数据库。

对象配置文件oraclehost.cfg有:

define host {
host_name                       Test_Oracle
address                         127.0.0.1
check_command                   check-host-alive
check_interval                  3
retry_interval                  1
max_check_attempts              5
check_period                    24x7
process_perf_data               0
retain_nonstatus_information    0
contacts                        nagiosadmin
notifications_enabled           1
notification_interval           30
notification_period             24x7
notification_options            d,r
}
define service {
    host_name               Test_Oracle
    service_description     check_OraDB
    check_command           check_MyOracle
    event_handler           restart-oracle
    event_handler_enabled   1
    check_interval          5
    retry_interval          1
    max_check_attempts      5
    check_period            24x7
    notifications_enabled   1
    notification_interval   30
    notification_period     24x7
    notification_options    r,w,c
    contacts                nagiosadmin
}

commands.cfg具有:

# 'Oracle DB' command definition
define command {
    command_name    check_MyOracle
    command_line    $USER1$/check_oracle_on.sh
}

# 'Oracle DB Handler' command definition
define command {
    command_name    restart-oracle
    command_line    $USER2$/oracle_handle.sh $SERVICESTATE$ $SERVICESTATETYPE$ $SERVICEATTEMPT$
}

这是oracle_handle.sh事件处理程序脚本的脚本。

#!/usr/bin/sh
case "$1" in
OK)
    ;;
WARNING)
    logger "Then it went here"
    PATH=$PATH:$HOME/.local/bin:$HOME/bin:/u/oracle/server/oracle12c102/bin
    export PATH
    ORACLE_HOME=/u/oracle/server/oracle12c102
    export ORACLE_HOME
    ORACLE_SID=walinv
    export ORACLE_SID
    echo "ora123" |sqlplus sys@walinv as sysdba @this_file.sql
    ;;
UNKNOWN)
    ;;
CRITICAL)
    ;;
esac
exit 0

其中this_file.sql包含一行:startup。它用于启动 Oracle 数据库。

此外,logger "Then it went here"事件处理程序脚本中存在的内容也会显示在 linux 日志中/var/log/messages。所以WARNING案件正在审理中。

我的 Nagios 事件日志显示:Nagios 事件日志脚本

如果我以nagios用户身份在终端中运行该脚本,该脚本将完美运行并且 Oracle 数据库将启动。但是,如果nagios通过 Web 服务器运行它,则在 Nagios Web Monitor 中,状态仍处于警告状态并且数据库已关闭。

用户nagios在 sudoers 中。

我已经在这上面浪费了10多个小时。为什么会发生这种情况?

为什么 Nagios 在运行事件处理程序脚本时不启动我的 Oracle 数据库?

答案1

我让它工作了。

我犯的第一个错误是没有在我的事件处理程序脚本中导出ORACLE_HOME和。ORACLE_PATH

第二个错误是在这一行:

echo "ora123" |sqlplus sys@walinv as sysdba @this_file.sql

this_file.sql\usr\local\nagios\libexec\eventhandlers.当我从文件夹手动执行脚本时eventhandlers,因此this_file.sql可以访问该文件。 Nagios 不会从此文件夹执行它。当我提到完整路径并让它发挥作用时。

相关内容