1067 error on attempt to start MySQL

后端 未结 26 1992
无人及你
无人及你 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 14:50

    Also check if all dirs which you wrote in the my.ini exists.

    My problem was that tmpdir doeesn`t exist so MySQL daemon falls with error 1067.

    [mysqld]
    port= 3306
    tmpdir = "C:/tmp"
    

    In this case C:/tmp must exists.

提交回复
热议问题