How to fix the error: shutting down MySQL unexpectedly on Xampp due to the 'Aria' plugin

These were the magazines:

[ERROR] mysqld.exe: Aria recovery failed. Run aria_chk -r on all Aria tables and delete all aria_log files. ######## [ERROR] The initialization function of the plug-in "Aria" returned an error. [ERROR] Registering the plug-in "Aria" as a STORAGE ENGINE failed.

+8
source share
2 answers

Solution: Deleting the aria_log_control file allows MariaDB to start over. You can find this file in \ xampp \ mysql \ data. Then restart or run xammp.

+25
source

If XAMPP generated the following logs

[Note] The FEEDBACK plugin is disabled.

[ERROR] j: \ xampp \ mysql \ bin \ mysqld.exe: unknown parameter '--skip-federated'

[ERROR] Cancel

Try starting MySQL with the following command

**mysqld.exe --skip-federated** 

Hope this helps! Good luck

+1
source

Source: https://habr.com/ru/post/1261351/


All Articles