数据库
首页 > 数据库> > xampp中MySQL启动失败解决方法

xampp中MySQL启动失败解决方法

作者:互联网

启动失败 查看log日志

2022-03-08 15:00:47 0 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2022-03-08 15:00:47 0 [Note] InnoDB: Uses event mutexes
2022-03-08 15:00:47 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2022-03-08 15:00:47 0 [Note] InnoDB: Number of pools: 1
2022-03-08 15:00:47 0 [Note] InnoDB: Using SSE2 crc32 instructions
2022-03-08 15:00:47 0 [Note] InnoDB: Initializing buffer pool, total size = 16M, instances = 1, chunk size = 16M
2022-03-08 15:00:47 0 [Note] InnoDB: Completed initialization of buffer pool
2022-03-08 15:00:48 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
2022-03-08 15:00:48 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2022-03-08 15:00:48 0 [Note] InnoDB: Setting file 'D:\Dailysoftware\xampp\mysql\data\ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2022-03-08 15:00:48 0 [Note] InnoDB: File 'D:\Dailysoftware\xampp\mysql\data\ibtmp1' size is now 12 MB.
2022-03-08 15:00:48 0 [Note] InnoDB: Waiting for purge to start
2022-03-08 15:00:48 0 [Note] InnoDB: 10.4.18 started; log sequence number 33051527; transaction id 37832
2022-03-08 15:00:48 0 [Note] InnoDB: Loading buffer pool(s) from D:\Dailysoftware\xampp\mysql\data\ib_buffer_pool
2022-03-08 15:00:48 0 [Note] Plugin 'FEEDBACK' is disabled.
2022-03-08 15:00:48 0 [Note] Server socket created on IP: '::'.

解决方法

参考https://stackoverflow.com/questions/56847804/xampp-mysql-service-crash-after-reboot

1、点击xampp面板上的Shell按钮进入命令框,输入命令:

mysqld –-console –-skip-grant-tables –-skip-external-locking

2、第一个cmd命令行窗口不关闭,重新在面板上点开一个Shell,再次输入指令:

mysqlcheck -r --databases mysql --use-frm

等命令窗口不再变化,再关闭命令窗口,重新启动xampp,重启mysql,问题解决。

标签:03,00,xampp,15,08,Note,失败,2022,MySQL
来源: https://www.cnblogs.com/whot/p/15980812.html