XAMPP出现Error: MySQL shutdown unexpectedly.

XAMPP报错:

10:09:11 [mysql] Error: MySQL shutdown unexpectedly.

10:09:11 [mysql] This may be due to a blocked port, missing dependencies,

10:09:11 [mysql] improper privileges, a crash, or a shutdown by another method.

10:09:11 [mysql] Press the Logs button to view error logs and check

10:09:11 [mysql] the Windows Event Viewer for more clues

10:09:11 [mysql] If you need more help, copy and post this

10:09:11 [mysql] entire log window on the forums

点击logs,拉到最下方。查看错误日志:

2025-12-12 10:01:23 0 [Note] Starting MariaDB 10.4.32-MariaDB source revision c4143f909528e3fab0677a28631d10389354c491 as process 22148

2025-12-12 10:01:23 0 [ERROR] mysqld.exe: File 'D:\17_Program_installation\xampp\mysql\data\aria_log.00000002' not found (Errcode: 2 "No such file or directory")

2025-12-12 10:01:23 0 [ERROR] mysqld.exe: Aria engine: log initialization failed

2025-12-12 10:01:23 0 [ERROR] Plugin 'Aria' registration as a STORAGE ENGINE failed.

2025-12-12 10:01:23 0 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions

2025-12-12 10:01:23 0 [Note] InnoDB: Uses event mutexes

2025-12-12 10:01:23 0 [Note] InnoDB: Compressed tables use zlib 1.3

2025-12-12 10:01:23 0 [Note] InnoDB: Number of pools: 1

2025-12-12 10:01:23 0 [Note] InnoDB: Using SSE2 crc32 instructions

2025-12-12 10:01:23 0 [Note] InnoDB: Initializing buffer pool, total size = 16M, instances = 1, chunk size = 16M

2025-12-12 10:01:23 0 [Note] InnoDB: Completed initialization of buffer pool

2025-12-12 10:01:23 0 [Note] InnoDB: 128 out of 128 rollback segments are active.

2025-12-12 10:01:23 0 [Note] InnoDB: Creating shared tablespace for temporary tables

2025-12-12 10:01:23 0 [Note] InnoDB: Setting file 'D:\17_Program_installation\xampp\mysql\data\ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...

2025-12-12 10:01:23 0 [Note] InnoDB: File 'D:\17_Program_installation\xampp\mysql\data\ibtmp1' size is now 12 MB.

2025-12-12 10:01:23 0 [Note] InnoDB: Waiting for purge to start

2025-12-12 10:01:23 0 [Note] InnoDB: 10.4.32 started; log sequence number 30526378; transaction id 35332

2025-12-12 10:01:23 0 [Note] InnoDB: Loading buffer pool(s) from D:\17_Program_installation\xampp\mysql\data\ib_buffer_pool

2025-12-12 10:01:23 0 [Note] Plugin 'FEEDBACK' is disabled.

2025-12-12 10:01:23 0 [Note] InnoDB: Buffer pool(s) load completed at 251212 10:01:23

2025-12-12 10:01:23 0 [ERROR] Could not open mysql.plugin table. Some plugins may be not loaded

2025-12-12 10:01:23 0 [ERROR] Failed to initialize plugins.

2025-12-12 10:01:23 0 [ERROR] Aborting

原因为:MariaDB 的 Aria 存储引擎在非正常关闭后,日志序列号(LSN)不一致,导致每次启动都"期待"下一个编号的日志文件,但实际没有正确初始化。

修复:

PowerShell(以管理员身份运行) 中执行:

复制代码
# 1. 确保 MySQL 已完全停止
taskkill /f /im mysqld.exe

# 2. 删除所有 Aria 相关文件(关键!包括控制文件)
Remove-Item -Force "你的路径\xampp\mysql\data\aria_log.*"
Remove-Item -Force "你的路径\xampp\mysql\data\aria_log_control"

# 3. 【重要】确保 mysql 系统表不依赖 Aria(使用 MyISAM)
#    如果你之前恢复过 backup\mysql,这步可跳过
#    否则请执行:
#    Remove-Item -Recurse -Force "D:\...\data\mysql"
#    Copy-Item -Recurse "D:\...\backup\mysql" "D:\...\data\mysql"

执行后在XAMPP,点击Start,成功启动。

相关推荐
HUGu RGIN8 分钟前
MySQL--》如何在MySQL中打造高效优化索引
android·mysql·adb
HackTwoHub1 小时前
AI大模型网关存在SQL注入、附 POC 复现、影响版本LiteLLM 1.81.16~1.83.7(CVE-2026-42208)
数据库·人工智能·sql·网络安全·系统安全·网络攻击模型·安全架构
l1t2 小时前
DeepSeek总结的DuckLake构建基于 SQL 原生表格式的下一代数据湖仓
数据库·sql
KmSH8umpK2 小时前
Redis分布式锁从原生手写到Redisson高阶落地,附线上死锁复盘优化方案进阶第八篇
数据库·redis·分布式
TDengine (老段)2 小时前
从施工监测到运营预警,桥科院用 TDengine 提升桥梁数据管理能力
大数据·数据库·物联网·时序数据库·tdengine·涛思数据
S1998_1997111609•X3 小时前
论mysql国盾shell-sfa犯罪行为集团下的分项工程及反向注入原理尐深度纳米算法下的鐌檵鄐鉎行为
网络·数据库·网络协议·百度·开闭原则
KmSH8umpK4 小时前
Redis分布式锁从原生手写到Redisson高阶落地,附线上死锁复盘优化方案进阶第七篇
数据库·redis·分布式
BU摆烂会噶5 小时前
【LangGraph】持久化实现的三大能力——时间旅行
数据库·人工智能·python·postgresql·langchain
l1t6 小时前
DeepSeek总结的DuckLake 入门
数据库
Joseph Cooper6 小时前
RAG 与 AI Agent:智能体真的需要检索增强生成吗?
数据库·人工智能·ai·agent·rag·上下文工程