错误:mysql意外关闭在尝试在xampp上启动mysql时

vcudknz3  于 2021-06-23  发布在  Mysql
关注(0)|答案(1)|浏览(389)

我的xampp不能运行mysql。网上的千解我已经做了,但还是没有给我解决方案。这是错误日志:

2018-05-30 02:14:31 1408 InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in future releases, together with the option innodb_use_sys_malloc and with the InnoDB's internal memory allocator.
2018-05-30  2:14:31 5128 [Note] InnoDB: innodb_empty_free_list_algorithm has been changed to legacy because of small buffer pool size. In order to use backoff, increase buffer pool at least up to 20MB.

****************************

2018-05-30  2:14:31 5128 [Note] InnoDB: Using mutexes to ref count buffer pool pages

2018-05-30  2:14:31 5128 [Note] InnoDB: The InnoDB memory heap is disabled

2018-05-30  2:14:31 5128 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions

2018-05-30  2:14:31 5128 [Note] InnoDB: _mm_lfence() and _mm_sfence() are used for memory barrier

2018-05-30  2:14:31 5128 [Note] InnoDB: Compressed tables use zlib 1.2.3

2018-05-30  2:14:31 5128 [Note] InnoDB: Using generic crc32 instructions

2018-05-30  2:14:31 5128 [Note] InnoDB: Initializing buffer pool, size = 16.0M

2018-05-30  2:14:31 5128 [Note] InnoDB: Completed initialization of buffer pool

2018-05-30  2:14:31 5128 [Note] InnoDB: Highest supported file format is Barracuda.

2018-05-30  2:14:33 5128 [Note] InnoDB: 128 rollback segment(s) are active.

2018-05-30  2:14:33 5128 [Note] InnoDB: Waiting for purge to start

2018-05-30  2:14:33 5128 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.36-83.0 started; log sequence number 546092343

2018-05-30  2:14:33 6096 [Note] InnoDB: Dumping buffer pool(s) not yet started
Cannot find checkpoint record at LSN (1,0x208b)

2018-05-30  2:14:33 5128 [ERROR] mysqld.exe: Aria recovery failed. Please run aria_chk -r on all Aria tables and delete all aria_log.######## files

2018-05-30  2:14:33 5128 [ERROR] Plugin 'Aria' init function returned error.

2018-05-30  2:14:33 5128 [ERROR] Plugin 'Aria' registration as a STORAGE ENGINE failed.

2018-05-30  2:14:33 5128 [Note] Plugin 'FEEDBACK' is disabled.

2018-05-30  2:14:33 5128 [ERROR] Aria engine is not enabled or did not start. The Aria engine must be enabled to continue as mysqld was configured with --with-aria-tmp-tables

2018-05-30  2:14:33 5128 [ERROR] Aborting

*******************************

谁能帮帮我。。

ni65a41a

ni65a41a1#

在错误日志中,有一个日志说明:
2018-05-30 2:14:33 5128[错误]mysqld.exe:aria恢复失败。请在所有aria表上运行ariaŠu chk-r并删除所有ariaŠu日志文件
因此,根据删除这些文件的日志,您必须转到/xampp/mysql/data/
删除以aria\u log开头的文件。也就是说所有以 aria_log.### 在这里 # 意思是任何像 00001 或者别的什么,所以在删除这些文件后,它大部分时间都能工作。

相关问题