cacti图形real-time问题
cacti提供即时功能,打开即时功能后发现什么都没有 解决办法: 在php.ini配置中找到disable_function被php禁用的函数,删除shell_exec、exec和popen,重启php,刷新cacti页面即可,即时生效。 刚创建好,图形会显示 … 阅读全文
cacti提供即时功能,打开即时功能后发现什么都没有 解决办法: 在php.ini配置中找到disable_function被php禁用的函数,删除shell_exec、exec和popen,重启php,刷新cacti页面即可,即时生效。 刚创建好,图形会显示 … 阅读全文
Cacti1.2.x新版教程之安装部署(吴昊博客独家首发)(一) 本文最后修改时间2020.04.16 前言:本文基于我的rpm一键包来部署,目前网上很多都是老版本的教程,而且现在很多网站还不断的爬来爬去,导致很多新发布的教程内容还是老的,看完本文后如果对你有 … 阅读全文
Cacti在系统工具-Technical Support看到如下报错 ERROR: Installed RRDtool version does not match configured version. Please visit the 配置设置 and s … 阅读全文
cacti ERROR: start time: unparsable time: 这个错误是由于php中禁用了escapeshellarg函数导致 解决办法: 在php.ini配置中找到disable_function被php禁用的函数,删除escapesh … 阅读全文
rrdtool1.7.0版本发布于2017年,时隔两年,rrdtool发布了新的rrdtool1.7.1版本,但1.7.1版本在make时候存在一个bug,博主已经反馈给了官方,官方表示会在1.7.2版本中修复。 网上几乎所有教程都是老版本的了,各种复制粘贴爬 … 阅读全文
报错内容:
1 2 3 |
/usr/bin/ld: cannot find -lmysqlclient collect2: error: ld returned 1 exit status make: *** [spine] Error 1 |
解决办法: centos:
1 |
yum install mysql-devel |
ubuntu:
1 |
apt-get install libmysqlclient-dev |
包安装 … 阅读全文
使用cacti监控windows时,发现有台windows网卡描述带有中文名称,导致cacti获取不到网卡,并且zabbix也同样获取不到值,此方法也适用于zabbix 当前windows网卡设备描述名称 Broadcom BCM5709C NetXtreme … 阅读全文
cacti监控linux网卡流量时,一定要选择In/Out Bits (64-bit Counters),否则如果流量大于100M后数据会不准确。 监控windows的网卡流量时候,如果选择In/Out Bits (64-bit Counters),则没有数据 … 阅读全文
在Cacti中添加设备后,可能会看到SNMP error错误信息,这里提供几个排错思路供参考。 1、首先确认是否安装了php-snmp扩展 php -m | grep snmp 2、被监控机snmp是否启动 service snmpd status 3、在ca … 阅读全文
在安装cacti时,有一段报错
1 |
ERROR: Your Cacti database login account does not have access to the MySQL TimeZone database. Please provide the Cacti database account "select" access to the "time_zone_name" table in the "mysql" database, and populate MySQL's TimeZone information before proceeding. |
解决办法:登录mysql,执行以下内容
1 2 |
mysql> GRANT SELECT ON mysql.time_zone_name TO cacti@localhost IDENTIFIED BY 'cactiwhsir'; mysql> flush privileges; |
然后发现又报错 [crayon-60112d3b084f … 阅读全文