1067 error on attempt to start MySQL

后端 未结 26 2068
无人及你
无人及你 2020-12-13 14:12

I\'ve installed MySQL on Windows 7. When I\'m trying to start MySQL service I\'m getting error 1067: The process terminated unexpectedly. Log message:

101111         


        
26条回答
  •  醉酒成梦
    2020-12-13 15:01

    I also get log with Table 'mysql.plugin' doesn't exist if install MYSQL Server 5.1 by 'msiexec.exe' DataDir I put as C:\MYSQL\MySQL_Server_5_1\data\

    but to my surprise was create data in a C:\MYSQL\MySQL_Server_5_1\data\data

    There are was add word data . So I change my.ini file from

    datadir="C:/MySQL/MySQL_Server_5_1/Data/" .
    

    to the

    datadir="C:/MySQL/MySQL_Server_5_1/Data/data"
    

    and then I can use net start MYSQL51 and then mysqld.exe run and appear in a Task Manager

提交回复
热议问题