Unable to start mysql server problem: "1067" process terminated unexpectedly

As shown in the figure, the 1067 error appears:
weimingchao

1. First find the installation directory of mysql server.

2. Open the my.ini file in the mysql server installation directory.
Modify one of the lines

default-storage-engine=INNODB 改为 default-storage-engine=MyISAM

3. Delete the two files ib_logfile0 and ib_logfile0. (Under the data folder in MySQL)

4. Restart the mysql server service in the administrator cmd, and it can be started successfully

net start mysql

weimingchao

Then it's OK!

Guess you like

Origin blog.csdn.net/m0_46202060/article/details/109735559