清理Zabbix Server历史数据
先停止zabbix_server,防止有数据写入清理全部历史数据对zabbix数据库执行MySQL语句truncate table history;
optimize table history;
truncate table history_uint;
optimize table history_uint;
truncate table trends;
optimize table ...
阅读全文
先停止zabbix_server,防止有数据写入清理全部历史数据对zabbix数据库执行MySQL语句truncate table history;
optimize table history;
truncate table history_uint;
optimize table history_uint;
truncate table trends;
optimize table ...
阅读全文
MySQL执行语句报错,提示“The total number of locks exceeds the lock table size”解决办法InnoDB表执行大批量数据的更新,插入,删除操作时会出现这个问题,需要调整InnoDB全局的innodb_buffer_pool_size的值来解决这个问题,并且重启MySQL服务执行MySQL语句show variables like &quo...
阅读全文
官网下载源码包编译安装编译报错和解决办法报错lzo enabled but missing解决办法从http://www.oberhumer.com/opensource/lzo/download/下载lzo源码包编译安装,编译参数可以加上--prefix=/usr/local/报错libpam required but missing解决办法yum install pam-devel -y...
阅读全文
添加源编辑/etc/apt/sources.list加入deb http://ftp.debian.org/debian/ wheezy-backports main
或
deb http://ftp.debian.org/debian/ wheezy-backports main更新源文件apt-get update更新backsports源apt-get -t wheezy-backpo...
阅读全文
Discuz! X 开启HTML在编辑器里面插入HTML代码,script代码不能运行修改source\fundtion\function_discuzcode.php找到if(!$htmlon) {
$message = dhtmlspecialchars($message);
} else {
$messag...
阅读全文