# 因磁盘写满 导致 Cacti 不出图
mysql -u cactiuser -p cacti
cacti
use cacti;
drop table poller_output;
show tables;
CREATE TABLE `poller_output` (
`local_data_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`rrd_name` varchar(19) NOT NULL DEFAULT '',
`time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`output` text NOT NULL,
PRIMARY KEY (`local_data_id`,`rrd_name`,`time`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
因为 磁盘用完,mysql无法使用, 造成cacti.poller_output table 出现问题, 最终不能 将采集到得数据放到 poller_output 表 导致 看不到数据
http://forums.cacti.net/viewtopic.php?f=12&t=30085
没有评论:
发表评论