MySQL无法启动提示: Default storage engine (InnoDB) is not available的解决方法

2022-11-12 09:22:24
内容摘要
这篇文章主要为大家详细介绍了MySQL无法启动提示: Default storage engine (InnoDB) is not available的解决方法,具有一定的参考价值,可以用来参考一下。 对此感兴趣的朋友,看
文章正文

这篇文章主要为大家详细介绍了MySQL无法启动提示: Default storage engine (InnoDB) is not available的解决方法,具有一定的参考价值,可以用来参考一下。

对此感兴趣的朋友,看看idc笔记做的技术笔记!

在my.ini(linux下/etc/my.cnf)加上skip-innodb,就可以了。我这样设置后,在linux下都没问题,今天在我本机winXP启动MYSQL,提示启动不起来。看下mysql目录的错误日志:引用090613 10:15:27 [ERROR] Default storage engine (InnoDB) is not available090613 10:15:27 [ERROR] Aborting090613 10:15:27 [Note] C:\www\mysql\bin\mysqld-nt: Shutdown complete估计是上次加了参数后,一直没启动起来。。。已经很久没用本机的mysql了。查了下,原来my.ini里有一句:default-storage-engine=INNODB,把默认的engine设为INNODB,而我又加了skip-innodb,怪不得启不来了。将default-storage-engine改为MYISAM,MYSQL启动OK!在skip-innodb下,data目录下的ibdata1,ib_logfile0,ib_logfile1这三个文件就不需要了,就可以删除。测试了下,在没加skip-innodb时,删除了这三个文件,启动时会自动创建这三个文件,日志如下:引用InnoDB: The first specified data file .\ibdata1 did not exist:InnoDB: a new database to be created!090613 10:19:37 InnoDB: Setting file .\ibdata1 size to 10 MBInnoDB: Database physically writes the file full: wait...090613 10:19:37 InnoDB: Log file .\ib_logfile0 did not exist: new to be createdInnoDB: Setting log file .\ib_logfile0 size to 24 MBInnoDB: Database physically writes the file full: wait...090613 10:19:38 InnoDB: Log file .\ib_logfile1 did not exist: new to be createdInnoDB: Setting log file .\ib_logfile1 size to 24 MBInnoDB: Database physically writes the file full: wait...InnoDB: Doublewrite buffer not found: creating newInnoDB: Doublewrite buffer createdInnoDB: Creating foreign key constraint system tablesInnoDB: Foreign key constraint system tables created090613 10:19:39 InnoDB: Started; log sequence number 0 0090613 10:19:39 [Note] C:\www\mysql\bin\mysqld-nt: ready for connections.再删除这三个文件,加了skip-innodb后,启动日志:引用090613 10:30:12 [Note] C:\www\mysql\bin\mysqld-nt: Normal shutdown090613 10:30:12 [Note] C:\www\mysql\bin\mysqld-nt: Shutdown complete090613 10:30:17 [Note] C:\www\mysql\bin\mysqld-nt: ready for connections.Version: '5.0.45' socket: '' port: 3306 Source distribution那三个文件就不会自动产生了。

注:关于MySQL无法启动提示: Default storage engine (InnoDB) is not available的解决方法的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!