mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-25 23:11:02 +08:00
PRF&PUB:20171017 check_mk error Cannot fetch deployment URL via curl error.md
@lujun9972 这篇文稿价值不大啊
This commit is contained in:
parent
3df559f036
commit
ad4d768b5f
@ -1,12 +1,15 @@
|
||||
如何解决 check_mk 出现 "Cannot fetch deployment URL via curl" 的错误
|
||||
如何解决 check_mk 出现 “Cannot fetch deployment URL via curl” 的错误
|
||||
======
|
||||
本文解释了 'ERROR Cannot fetch deployment URL via curl:Couldn't resolve host。The given remote host was not resolved。' 的原因及其解决方案。
|
||||
|
||||
本文解释了 “ERROR Cannot fetch deployment URL via curl:Couldn't resolve host。The given remote host was not resolved。” 的原因及其解决方案。
|
||||
|
||||
![ERROR Cannot fetch deployment URL via curl:Couldn't resolve host。The given remote host was not resolved。][1]
|
||||
|
||||
check_mk 是一个帮你配置 [nagios][2] 监控服务器的工具。然后在配置其中一台机器时,我遇到了下面的错误:
|
||||
`check_mk` 是一个帮你配置 [nagios][2] 监控服务器的工具。然后在配置其中一台机器时,我遇到了下面的错误:
|
||||
|
||||
`ERROR Cannot fetch deployment URL via curl:Couldn't resolve host。The given remote host was not resolved。`
|
||||
```
|
||||
ERROR Cannot fetch deployment URL via curl:Couldn't resolve host。The given remote host was not resolved。
|
||||
```
|
||||
|
||||
该错误是在我使用下面命令尝试将该机器注册到监控服务器时发生的:
|
||||
|
||||
@ -14,15 +17,16 @@ check_mk 是一个帮你配置 [nagios][2] 监控服务器的工具。然后在
|
||||
root@kerneltalks# /usr/bin/cmk-update-agent register -s monitor.kerneltalks.com -i master -H `hostname` -p http -U omdadmin -S ASFKWEFUNSHEFKG -v
|
||||
```
|
||||
|
||||
其中-
|
||||
其中:
|
||||
|
||||
`-s` 指明监控服务器
|
||||
`-i` 指定服务器上 Check_MK 站点的名称
|
||||
`-H` 指定 agent 所在的主机名
|
||||
`-p` 为协议,可以是 http 或 https (默认为 https)
|
||||
`-U` 允许下载 agent 的用户 ID
|
||||
`-S` 为密码。用户的自动操作密码(当是自动用户时)
|
||||
从错误中可以看出,命令无法解析监控服务器的 DNS 名称 `monitor.kerneltalks.com`
|
||||
- `-s` 指明监控服务器
|
||||
- `-i` 指定服务器上 Check_MK 站点的名称
|
||||
- `-H` 指定 agent 所在的主机名
|
||||
- `-p` 为协议,可以是 http 或 https (默认为 https)
|
||||
- `-U` 允许下载 agent 的用户 ID
|
||||
- `-S` 为密码。用户的自动操作密码(当是自动用户时)
|
||||
|
||||
从错误中可以看出,命令无法解析监控服务器的 DNS 名称 `monitor.kerneltalks.com`。
|
||||
|
||||
### 解决方案:
|
||||
|
||||
@ -33,7 +37,7 @@ root@kerneltalks# cat /etc/hosts
|
||||
10.0.10.9 monitor.kerneltalks.com
|
||||
```
|
||||
|
||||
这就搞定了。你可能成功注册了。
|
||||
这就搞定了。你现在可以成功注册了。
|
||||
|
||||
```
|
||||
root@kerneltalks # /usr/bin/cmk-update-agent register -s monitor.kerneltalks.com -i master -H `hostname` -p http -U omdadmin -S ASFKWEFUNSHEFKG -v
|
||||
@ -51,11 +55,11 @@ via: https://kerneltalks.com/troubleshooting/check_mk-register-cannot-fetch-depl
|
||||
|
||||
作者:[kerneltalks][a]
|
||||
译者:[lujun9972](https://github.com/lujun9972)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
校对:[wxy](https://github.com/wxy)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
||||
[a]:https://kerneltalks.com
|
||||
[1]:https://c4.kerneltalks.com/wp-content/uploads/2017/10/resolve-check_mk-error.png
|
||||
[1]:https://a4.kerneltalks.com/wp-content/uploads/2017/10/resolve-check_mk-error.png
|
||||
[2]:https://www.nagios.org/
|
||||
[3]:https://kerneltalks.com/linux/understanding-etc-hosts-file/
|
Loading…
Reference in New Issue
Block a user