博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
zabbix 安装 weathermap
阅读量:6470 次
发布时间:2019-06-23

本文共 1324 字,大约阅读时间需要 4 分钟。

wget http://network-weathermap.com/files/php-weathermap-0.97c.zip

unzip php-weathermap-0.97c.zip
cp -rp weathermap/ /usr/share/zabbix/
cd /usr/share/zabbix/weathermap/
# Verify
php check.php
# 2 "PHP Strict Standards" errors, not serious apparently
# Check if a weathermap.png was created in http://1.2.3.4/zabbix/weathermap/weathermap.png
# in editor.php :
$ENABLED=true;
// ...
// To avoid the warning message about Cacti
$ignore_cacti=TRUE;
cd /tmp
git clone https://github.com/amousset/php-weathermap-zabbix-plugin
cp -rp php-weathermap-zabbix-plugin/lib/* /usr/share/zabbix/weathermap/lib/
cd /usr/share/zabbix/weathermap
chown www-data configs/
chmod u+w configs/
cat >>/etc/apache2/conf.d/zabbix <<EOF
<Directory "/usr/share/zabbix/weathermap">
   <Files editor.php>
       Order Deny,Allow
       Deny from all
       Allow from 127.0.0.1
   </Files>
</Directory>
EOF
# in Zabbix GUI, create a "weathermap" user, read-only
# then in the graph conf file, global section : 
SET zabbix_user weathermap
SET zabbix_password PASSWORD
SET zabbix_url http://1.2.3.4/zabbix/api_jsonrpc.php
# In the regular LINKS section :
LINK node1-node2
       TARGET zabbix:itemid:Switch1:24471:24263
       NODES node1 node2
# Then, generate the map : 
./weathermap --config configs/simple.conf

本文转自luojinghappy 51CTO博客,原文链接:http://blog.51cto.com/luojinghappy/1845218,如需转载请自行联系原作者

你可能感兴趣的文章
,net运行框架
查看>>
Java 中 Emoji 的正则表达式
查看>>
Mixin Network第一届开发者大赛作品介绍- dodice, diceos和Fox.one luckycoin
查看>>
安卓Glide(4.7.1)使用笔记 01 - 引入项目
查看>>
AndroidNote
查看>>
中金易云:为出版社找到下一本《解忧杂货店》
查看>>
Flex布局
查看>>
Material Design之 AppbarLayout 开发实践总结
查看>>
Android中的SurfaceView详解
查看>>
Flutter之MaterialApp使用详解
查看>>
DataBinding最全使用说明
查看>>
原生Js交互之DSBridge
查看>>
Matlab编程之——卷积神经网络CNN代码解析
查看>>
白洋淀周末游
查看>>
三篇文章了解 TiDB 技术内幕 —— 说计算
查看>>
copy strong weak assign的区别
查看>>
OpenCV 入门
查看>>
css 3D transform变换
查看>>
ele表格合并行之后的selection选中
查看>>
正则表达式分解剖析(一文悟透正则表达式)
查看>>