Mysql:1 个表定期崩溃
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你检查过mysql日志文件吗?
您可以启用日志记录:
/etc/my.conf
检查 mysqld 部分中是否存在类似以下两行的内容
您的 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
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