XAMPP MySQL service crash after reboot

后端 未结 2 1723
广开言路
广开言路 2020-12-10 16:15

I just install a XAMPP 7.3.6-2-VC15 for Win64, and when i install it, it\'s fine, MySQL start from control panel without error, et all is ok.

After rebooting my PC,

相关标签:
2条回答
  • 2020-12-10 16:47

    I got this problem like you . I have solved this problem like below.

    Copy from xampp/mysql/backup folder and paste in xampp/mysql/data folder except ibdata1 file.

    If you replace ibdata1 file from xampp/mysql/data then some database you will get error table does not exist.

    0 讨论(0)
  • 2020-12-10 16:56

    This one helped for me:

    Open shell from from control panel and start mysql with this command:

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

    Open another shell from control panel and repair database with this command:

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

    Stop mysql, close shells and restart mysql normally.

    based on: Re: Corrupt mysql.users How to fix

    0 讨论(0)
提交回复
热议问题