客户数据库在运行中忽然断电,当服务器重启发现MySQL没法启动,查看日志,报错以下:html
151105 11:24:52 mysqld_safe Starting mysqld daemon with databases from /data/mysql/datafile 151105 11:24:52 [Warning] Using unique option prefix myisam_recover instead of myisam-recover-options is deprecated and will be removed in a future release. Please use the full name instead. 151105 11:24:52 [Warning] Using unique option prefix myisam_recover instead of myisam-recover-options is deprecated and will be removed in a future release. Please use the full name instead. 151105 11:24:52 InnoDB: The InnoDB memory heap is disabled 151105 11:24:52 InnoDB: Mutexes and rw_locks use GCC atomic builtins 151105 11:24:52 InnoDB: Compressed tables use zlib 1.2.3 151105 11:24:52 InnoDB: Initializing buffer pool, size = 512.0M 151105 11:24:52 InnoDB: Completed initialization of buffer pool 151105 11:24:52 InnoDB: highest supported file format is Barracuda. InnoDB: The log sequence number in ibdata files does not match InnoDB: the log sequence number in the ib_logfiles! 151105 11:24:52 InnoDB: Database was not shut down normally! InnoDB: Starting crash recovery. InnoDB: Reading tablespace information from the .ibd files... InnoDB: Restoring possible half-written data pages from the doublewrite InnoDB: buffer... 151105 11:24:52 InnoDB: ERROR: We were only able to scan the log up to InnoDB: 2735615488, but a checkpoint was at 2735615806. InnoDB: It is possible that the database is now corrupt! InnoDB: 3 transaction(s) which must be rolled back or cleaned up InnoDB: in total 3 row operations to undo InnoDB: Trx id counter is 6D84900 InnoDB: Last MySQL binlog file position 0 446116929, file name /data/mysql/binlog/mysql-bin.001288 InnoDB: Cleaning up trx with id 6D7C116 InnoDB: Cleaning up trx with id 6D74419 InnoDB: Cleaning up trx with id 6D6F27E 151105 11:24:52 InnoDB: Waiting for the background threads to start 151105 11:24:52 InnoDB: Assertion failure in thread 140108568532736 in file trx0purge.c line 848 InnoDB: Failing assertion: purge_sys->purge_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.5/en/forcing-innodb-recovery.html InnoDB: about forcing recovery. 03:24:52 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. Please help us make Percona Server better by reporting any bugs at http://bugs.percona.com/ key_buffer_size=402653184 read_buffer_size=4194304 max_used_connections=0 max_threads=2002 thread_count=0 connection_count=0 It is possible that mysqld could use up to key_buffer_size + (read_buffer_size + sort_buffer_size)*max_threads = 16818378 K bytes of memory Hope that's ok; if not, decrease some variables in the equation. Thread pointer: 0x0 Attempting backtrace. You can use the following information to find out where mysqld died. If you see no messages after this, something went terribly wrong... stack_bottom = 0 thread_stack 0x40000 /usr/local/percona-server-5.5.38-35.2/bin/mysqld(my_print_stacktrace+0x2e)[0x7785ae] /usr/local/percona-server-5.5.38-35.2/bin/mysqld(handle_fatal_signal+0x43a)[0x66a1da] /lib64/libpthread.so.0[0x379c20f710] /lib64/libc.so.6(gsignal+0x35)[0x379be32925] /lib64/libc.so.6(abort+0x175)[0x379be34105] /usr/local/percona-server-5.5.38-35.2/bin/mysqld[0x814fb0] /usr/local/percona-server-5.5.38-35.2/bin/mysqld[0x8153f7] /usr/local/percona-server-5.5.38-35.2/bin/mysqld[0x8e318f] /usr/local/percona-server-5.5.38-35.2/bin/mysqld[0x8d98d5] /usr/local/percona-server-5.5.38-35.2/bin/mysqld[0x813c4e] /usr/local/percona-server-5.5.38-35.2/bin/mysqld[0x809d2c] /lib64/libpthread.so.0[0x379c2079d1] /lib64/libc.so.6(clone+0x6d)[0x379bee8b5d] You may download the Percona Server operations manual by visiting http://www.percona.com/software/percona-server/. You may find information in the manual which will help you identify the cause of the crash. 151105 11:24:52 mysqld_safe mysqld from pid file /data/mysql/datafile/mysql.pid ended
分析日志后发现,数据库没法重启的缘由是由于ibdata1
文件损坏,重启后没法正常恢复。mysql
如今咱们就须要跳过恢复步骤,修改my.cnf
文件,在my.cnf中的[mysqld]
中添加sql
innodb_force_recovery = 6 innodb_purge_threads = 0
innodb_force_recovery能够设置为1-6,大的数字包含前面全部数字的影响。
1. (SRV_FORCE_IGNORE_CORRUPT):忽略检查到的corrupt页。
2. (SRV_FORCE_NO_BACKGROUND):阻止主线程的运行,如主线程须要执行full purge操做,会致使crash。
3. (SRV_FORCE_NO_TRX_UNDO):不执行事务回滚操做。
4. (SRV_FORCE_NO_IBUF_MERGE):不执行插入缓冲的合并操做。
5. (SRV_FORCE_NO_UNDO_LOG_SCAN):不查看重作日志,InnoDB存储引擎会将未提交的事务视为已提交。
6. (SRV_FORCE_NO_LOG_REDO):不执行前滚的操做。shell
再次启动,若是还没法启动则删除数据目录datafile
下的 ibdata1
,ib_logfile*
等文件。数据库
启动后导出MySQL数据库,从新恢复便可。服务器