Mysql:1 个表定期崩溃

发布于 2024-09-24 16:56:53 字数 83 浏览 6 评论 0原文

我的 mysql 5.1.41 数据库中定期有一个表崩溃。用myisamchk修复后,有些服务器重新启动后又崩溃了。有人知道我如何确定导致问题的原因吗?

Periodically i have one table in my mysql 5.1.41 database that is crashing. After repairing with myisamchk and some server restarts it crashes again. Anybody who has an idea how i can identify what's causing the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴意少年 2024-10-01 16:56:54

你检查过mysql日志文件吗?

您可以启用日志记录:
/etc/my.conf

检查 mysqld 部分中是否存在类似以下两行的内容

[mysqld]
log-bin
log=/var/log/mysql/mysql.log

您的 myisam 表有多大?

您使用 myisam 表还有什么具体原因吗?我没有特别的原因强烈建议切换到 InnoDB(InnoDB 插件,或 Percona 的 XtraDB)

InnoDB 是一个“崩溃安全”的存储引擎

have you checked the mysql log file?

you can enable logging:
/etc/my.conf

check if something like the below 2lines exist in the mysqld section

[mysqld]
log-bin
log=/var/log/mysql/mysql.log

how large is your myisam table?

also is there a specific reason you are using myisam tables. I there is no specific reason I would highly recommend switching to InnoDB (InnoDB plugin, or Percona's XtraDB)

InnoDB is a 'crash-safe' storage-engine

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文