MYSQL数据库完美解决mysql启动后随即关闭的问题(ibdata1文件损坏导致)

MYSQL数据库完美解决mysql启动后随即关闭的问题(ibdata1文件损坏导致),第1张

概述介绍《MYSQL数据库完美解决mysql启动后随即关闭的问题(ibdata1文件损坏导致)》开发教程,希望对您有用。

《MysqL数据库完美解决MysqL启动后随即关闭的问题(ibdata1文件损坏导致)》要点:
本文介绍了MysqL数据库完美解决MysqL启动后随即关闭的问题(ibdata1文件损坏导致),希望对您有用。如果有疑问,可以联系我们。

MysqL应用机房一台服务器上的MysqL运行一段时间了,突然出现了一个很奇怪的现象:重启后无法恢复了!准确情况是:启动MysqL后随即就又关闭了.

MysqL应用查看MysqL错误日志如下:

MysqL应用160920 22:41:41 MysqLd_safe Starting MysqLd daemon with databases from /home/MysqLData/
2016-09-20 22:41:41 0 [Note] /Data/app/MysqL5.6.25/bin/MysqLd (MysqLd 5.6.25-log) starting as process 32372 ...
2016-09-20 22:41:42 32372 [Note] Plugin 'FEDERATED' is Disabled.
2016-09-20 22:41:42 32372 [Warning] option 'innodb-write-io-threads': unsigned value 1000 adjusted to 64
2016-09-20 22:41:42 32372 [Warning] option 'innodb-read-io-threads': unsigned value 1000 adjusted to 64
2016-09-20 22:41:42 32372 [Note] InnoDB: Using atomics to ref count buffer pool pages
2016-09-20 22:41:42 32372 [Note] InnoDB: The InnoDB memory heap is Disabled
2016-09-20 22:41:42 32372 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2016-09-20 22:41:42 32372 [Note] InnoDB: Memory barrIEr is not used
2016-09-20 22:41:42 32372 [Note] InnoDB: Compressed tables use zlib 1.2.3
2016-09-20 22:41:42 32372 [Note] InnoDB: Using cpu crc32 instructions
2016-09-20 22:41:42 32372 [Note] InnoDB: Initializing buffer pool,size = 1.0G
2016-09-20 22:41:42 32372 [Note] InnoDB: Completed initialization of buffer pool
2016-09-20 22:41:42 32372 [Note] InnoDB: Highest supported file format is barracuda.
2016-09-20 22:41:42 32372 [Note] InnoDB: Log scan progressed past the checkpoint lsn 20293587957
2016-09-20 22:41:42 32372 [Note] InnoDB: Database was not shutdown normally!
2016-09-20 22:41:42 32372 [Note] InnoDB: Starting crash recovery.
2016-09-20 22:41:42 32372 [Note] InnoDB: Reading tablespace information from the .ibd files...
2016-09-20 22:41:42 32372 [Note] InnoDB: Restoring possible half-written data pages
2016-09-20 22:41:42 32372 [Note] InnoDB: from the doublewrite buffer...
InnoDB: Doing recovery: scanned up to log sequence number 20293596130
2016-09-20 22:41:42 32372 [Note] InnoDB: Starting an apply batch of log records to the database...
InnoDB: Progress in percent: 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
InnoDB: Apply batch completed
InnoDB: Last MysqL binlog file position 0 136254,file name MysqL-bin.000013
2016-09-20 22:41:43 32372 [Note] InnoDB: 128 rollback segment(s) are active.
2016-09-20 22:41:43 32372 [Note] InnoDB: Waiting for purge to start
2016-09-20 22:41:43 7f77a9edd700 InnoDB: Assertion failure in thread 140151928772352 in file trx0purge.cc line 699
InnoDB: Failing assertion: purge_sys->iter.trx_no <= purge_sys->rseg->last_trx_no
InnoDB: We intentionally generate a memory trap.
InnoDB: submit a detailed BUG report to http://BUGs.MysqL.com.
InnoDB: If you get repeated assertion failures or crashes,even
InnoDB: immediately after the MysqLd startup,there may be
InnoDB: corruption in the InnoDB tablespace. Please refer to
InnoDB: http://dev.MysqL.com/doc/refman/5.6/en/forcing-innodb-recovery.HTML
InnoDB: about forcing recovery.
02:41:43 UTC - MysqLd got signal 6 ;
This Could be because you hit a BUG. It is also possible that this binary
or one of the librarIEs it was linked against is corrupt,improperly built,
or misconfigured. This error can also be caused by malfunctioning harDWare.
We will try our best to scrape up some info that will hopefully help
diagnose the problem,but since we have already crashed,
something is definitely wrong and this may fail.

MysqL应用分析日志后发现,数据库无法重启的原因是因为ibdata1文件损坏,重启后无法正常恢复.

MysqL应用解决办法:

MysqL应用需要跳过恢复步骤,修改my.cnf文件,在my.cnf中的[MysqLd]中添加:

MysqL应用innodb_force_recovery = 6
innodb_purge_threads = 1

MysqL应用解释:

MysqL应用innodb_force_recovery可以设置为1-6,大的数字包含前面所有数字的影响.

MysqL应用具体数字对应的含义:

MysqL应用1-----(SRVFORCEIGnorECORRUPT):忽略检查到的corrupt页.
2-----(SRVFORCENOBACKGROUND):阻止主线程的运行,如主线程需要执行full purge *** 作,会导致crash.
3-----(SRVFORCENOTRXUNDO):不执行事务回滚 *** 作.
4-----(SRVFORCENOIBUFMERGE):不执行插入缓冲的合并 *** 作.
5-----(SRVFORCENOUNDolOGSCAN):不查看重做日志,InnoDB存储引擎会将未提交的事务视为已提交.
6-----(SRVFORCENolOG_REDO):不执行前滚的 *** 作.

MysqL应用再次启动MysqL就ok了~

MysqL应用如果还无法启动,则需要删除数据目录datafile下的 ibdata1,ib_logfile*等文件.

MysqL应用启动后导出MysqL数据库,重新恢复即可.

MysqL应用以上这篇完美解决MysqL启动后随即关闭的问题(ibdata1文件损坏导致)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持内存溢出PHP.

总结

以上是内存溢出为你收集整理的MYSQL数据库完美解决mysql启动后随即关闭的问题(ibdata1文件损坏导致)全部内容,希望文章能够帮你解决MYSQL数据库完美解决mysql启动后随即关闭的问题(ibdata1文件损坏导致)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1160069.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存