CentOS 5.8(64 位)上 MySQL 更新(5.1 至 5.5)后 CPU 使用率升高

CentOS 5.8(64 位)上 MySQL 更新(5.1 至 5.5)后 CPU 使用率升高

一般问题:服务器负载 20.92(8 个 CPU)[从 7 到 40 不等,通常应该小于 1)

服务器规格:专用服务器 Intel Core i7(8 个 CPU) RAM:8GB 我们使用 WHM,拥有大约 25 个数据库(8 个是 wordpress),其中大多数是 MyISAM。我们一如既往地使用默认的 MySQL 选项。

现在 WHM 不允许我们降级到 mysql 5.1 当我们禁用 mysql 时,cpu 会下降到 0.20(8 个 CPU)

正如我所说,问题是 CPU 超过 100%。

现在,当我查看 PhpMyAdmin 统计信息时:“查询统计信息:自启动以来,已向服务器发送了 387,979 个查询”,并且服务器已运行 20 分钟。

显示状态如'%onn%';打印以下内容:

| Aborted_connects         | 1     |
| Connections              | 93576 | (and growing by ~100 per second)
| Max_used_connections     | 46    |
| Threads_connected        | 7     |

集合中有 7 行(0.00 秒)当我关闭 apache2 时没有建立新的连接。

/etc/my.cnf

[mysqld]
log-slow-queries
default-storage-engine=MyISAM
max_connections=500
innodb_file_per_table=1
thread_concurrency=16
wait_timeout=120

答案1

尝试此命令:sudo date `date +"%m%d%H%M%C%y.%S"

请参阅以下有关该问题的博客文章。

http://blog.mozilla.org/it/2012/06/30/mysql-and-the-leap-second-high-cpu-and-the-fix/

相关内容