0

我在 2 台服务器上有一个 mysql 主主复制,它工作正常。现在我需要使用 nagios 插件对其进行监控。我check_replication.sh从 nagios 网站下载了它并将其作为插件添加到代理服务器中。当我在check_replication.sh本地运行时,它显示复制很好。但是当我从 nagios 服务器运行相同的命令时,它显示为失败。

/usr/local/nagios/libexec/check_nrpe -H remoteserver  -c check_repl

我还将用户 nagios 添加到 sudoers 以运行 mysql 命令。知道可能是什么问题吗?

4

1 回答 1

0

使用 check_mysql_slavestatus.sh

check_mysql_slavestatus.sh

define service{
use             generic-service ; Name of service template to use
host_name       xxxxxxxxxxxxx
check_interval      1           ; Actively check the host every 1 minutes
retry_interval      1           ; Schedule host check retries at 1 minute intervals
service_description     MySQL Replication Delay
check_interval      480
check_command       check_mysql_slavestatus!3306!nagios!nagi0s01!300!600

}

于 2018-10-02T14:48:00.657 回答