我关于stackoverflow的第一个问题所以我希望我已经遵循了所有指南。
我在Digital Ocean Droplet上有一个带MySql数据库的网站。
我发现mysql已经停止运行并且在查找找到损坏的表之后。用myisamchk -r
修复后,我认为问题已经解决了。然而它一直在发生。我更改了innodb_buffer_pool_size = 20M in my.cnf
并在阅读MySQL, Error 126: Incorrect key file for table后在/dev/vda/
创建了一些可用空间
Filesystem 1K-blocks Used Available Use% Mounted on
udev 239664 4 239660 1% /dev
tmpfs 50176 380 49796 1% /run
/dev/vda1 20511356 12346408 7099992 64% /
none 4 0 4 0% /sys/fs/cgroup
none 5120 0 5120 0% /run/lock
none 250872 0 250872 0% /run/shm
我在mysql / error.log中有这些错误
[ERROR] /usr/sbin/mysqld: Incorrect key file for table './websitename/wp_options.MYI'; try to repair it
[ERROR] Got an error from thread_id=178, /build/mysql-5.5-heGK82/mysql-5.5-5.5.55/storage/myisam/mi_update.c:226
[ERROR] MySQL thread id 178, OS thread handle 0x7f4544010700, query id 69124 localhost th3489075 Updating
当我在腐败的桌子上运行myisamchk db_name.MYI
时,我得到了
Checking MyISAM file: wp_options.MYI
Data records: 375 Deleted blocks: 0
myisamchk: warning: Table is marked as crashed
myisamchk: warning: 1 client is using or hasn't closed the table properly
- check file-size
myisamchk: error: Size of datafile is: 1059228 Should be: 1059276
- check record delete-chain
- check key delete-chain
- check index reference
- check data record references index: 1
- check data record references index: 2
- check record links
myisamchk: error: Keypointers and record positions doesn't match
myisamchk: warning: Found 375 key parts. Should be: 377
MyISAM-table 'wp_options.MYI' is corrupted
Fix it using switch "-r" or "-o"
使用myisamchk -r or -o
选项修复表似乎在报告没有问题后立即运行myisamchk *.MYI
,但稍后会返回上面的错误。
我有数据库的各种备份,但不确定它们与当前的数据库有多么不同。
我理解如果mysql正在运行,则会发出警告myisamchk: warning: 1 client is using or hasn't closed the table properly
。
当mysql停止时myisamchk *.MYI
报告一切正常,但mysql仍然崩溃。
答案 0 :(得分:0)
每次出现电源故障或其他突然终止的mysqld时,MyISAM表可能被破坏。这是切换到InnoDB的一个很好的理由,它可以更好地保护自己并在重启时自动修复。
同时,您可以尝试 OPTIMIZE TABLE
作为强制重建表的方法。这可能会或可能不会丢失似乎丢失的数据,但它可能可能摆脱错误消息,直到下一次崩溃。