码迷,mamicode.com
首页 > 数据库 > 详细

mysql 断电多次,日志文件损坏,无法启动的问题

时间:2015-08-06 17:07:52      阅读:585      评论:0      收藏:0      [点我收藏+]

标签:

    断电引起的mysql无法启动的问题:


   1.报错 

shell>  mysql.server start                                                                                                   
Starting MySQL
..................................................................................................... 
ERROR! The server quit without updating PID file (/usr/local/var/mysql/NilYangdeiMac.local.pid).
   1.1 日志:  
2015-08-06 15:05:36 1920 [Note] InnoDB: Check that you do not already have another mysqld process using the same InnoDB data or log files.
2015-08-06 15:05:37 1920 [ERROR] InnoDB: Unable to lock ./ibdata1, error: 35
2015-08-06 15:05:37 1920 [Note] InnoDB: Check that you do not already have another mysqld process using the same InnoDB data or log files.
2015-08-06 15:05:37 1920 [Note] InnoDB: Unable to open the first data file
2015-08-06 15:05:37 7fff77755300  InnoDB: Operating system error number 35 in a file operation.
InnoDB: Error number 35 means ‘Resource temporarily unavailable‘.
InnoDB: Some operating system error numbers are described at
InnoDB: http://dev.mysql.com/doc/refman/5.6/en/operating-system-error-codes.html
2015-08-06 15:05:37 1920 [ERROR] InnoDB: Can‘t open ‘./ibdata1‘
2015-08-06 15:05:37 1920 [ERROR] InnoDB: Could not open or create the system tablespace. If you tried to add new data files to the system tablespace, and it failed here, you should now edit innodb_data_file_path in my.cnf back to what it was, and remove the new ibdata files InnoDB created in this failed attempt. InnoDB only wrote those files full of zeros, but did not yet use them in any way. But be careful: do not remove old data files which contain your precious data!
2015-08-06 15:05:37 1920 [ERROR] Plugin ‘InnoDB‘ init function returned error.
2015-08-06 15:05:37 1920 [ERROR] Plugin ‘InnoDB‘ registration as a STORAGE ENGINE failed.
2015-08-06 15:05:37 1920 [ERROR] Unknown/unsupported storage engine: InnoDB
2015-08-06 15:05:37 1920 [ERROR] Aborting

  注意下面提到的几个错误:

Check that you do not already have another mysqld process using the same InnoDB data or log files (已经有进程在运行)

?

Unable to lock ./ibdata1         

InnoDB: Can‘t open ‘./ibdata1‘  

Unable to open the first data file

 说明日志文件可能坏掉了,得重来


 3.解决办法

  3.1. 删掉日志文件,重新来过:
shell> rm ib_logfile0  ib_logfile1  ibdata1
  3.2. 删掉mysql进程
shell>  ps aux|grep mysqld |grep -v ‘grep‘| awk ‘{print $2}‘|xargs kill
  3.3. Start Mysql
shell> mysql.server start
Starting MySQL
.................................. SUCCESS!

 

  问题解决。


mysql 断电多次,日志文件损坏,无法启动的问题

标签:

原文地址:http://my.oschina.net/lxrm/blog/488671

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!