解决zabbix“ZBX_NOTSUPPORTED: Timeout while executing a shell script”报错

简介:

如题所示,在zabbix_server使用zabbix_get获取自定义“UserParameter”对应的脚本的数据时,出现了如题所示的报错信息

1
[root@nmp01 scripts] # /usr/local/zabbix/bin/zabbix_get -s 127.0.0.1 -k 8080connectNum
1
ZBX_NOTSUPPORTED: Timeout while executing a shell script.

解决方案

(1)修改zabbix_server的zabbix_server.conf:

1
[root@nmp01 scripts] # vim /usr/local/zabbix/etc/zabbix_server.conf

修改以下参数:

1
Timeout=30

注:超时时间为30秒

(2)修改脚本所在zabbix_agentd的zabbix_agentd.conf:

1
[root@nmp01 scripts] # vim /usr/local/zabbix/etc/zabbix_server.conf

修改以下参数:

1
Timeout=30

(3)重启zabbix服务端和脚本所在客户端:

1
2
3
[root@nmp01 scripts] # service zabbix_server restart
 
[root@nmp01 scripts] # service zabbix_agentd restart


本文转自 pangfc 51CTO博客,原文链接:http://blog.51cto.com/983836259/1862594,如需转载请自行联系原作者
相关文章
|
6月前
|
Shell 开发工具
学习简单的shell script
【1月更文挑战第3天】学习简单的shell script。
104 3
|
Shell Android开发 C++
利用Wrap Shell Script定位Android Native内存泄漏
## 前提条件 - Android版本为8.0以上 ## 环境配置 - cd到/src/main目录下,新建shell目录,同时shell目录下配置与libs目录下相同平台的目录,如下app下的层级结构,可看到shell/lib下具有与libs下相同的平台目录结构 ```c ── AndroidManifest.xml ├── java ├── libs │   ├── a
3585 0
|
监控 Ubuntu Shell
用shell脚本部署zabbix
用shell脚本部署zabbix
189 1
|
监控 开发工具
Zabbix自定义KEY报错ZBX_NOTSUPPORTED: Unsupported item key.
[root@zabbix bin]# ./zabbix_get -s 192.217.24.47 -k jump-server ZBX_NOTSUPPORTED: Unsupported item key.
9853 0
|
SQL 监控 关系型数据库
Mysql主从同步报错解决:Error executing row event: Table zabbix.history-..
Mysql主从同步报错解决:Error executing row event: Table zabbix.history-..
296 0
|
6月前
|
数据采集 监控 数据库
请问OceanBase社区版能否通过zabbix监控,然后将报错信息展现到grafana?
【2月更文挑战第25天】请问OceanBase社区版能否通过zabbix监控,然后将报错信息展现到grafana?
71 2
|
6月前
|
Shell 开发工具
编写与执行一个shell script
【1月更文挑战第3天】编写与执行一个shell script。
119 1
|
监控 Linux
CentOS 7安装zabbix-agent 5.0报错:依赖检测失败:libpcre.so.0(64bit)获取GPG密钥失败
CentOS 7安装zabbix-agent 5.0报错:依赖检测失败:libpcre.so.0(64bit)获取GPG密钥失败
338 0
|
JavaScript 前端开发 关系型数据库
Shell script + crontab实现Mysql定时备份
Shell script + crontab实现Mysql定时备份
122 0
Shell script + crontab实现Mysql定时备份
|
Shell
12.3.3 Shell script 的默认变量($0, $1...)
12.3.3 Shell script 的默认变量($0, $1...)
76 0

推荐镜像

更多