MySQL 5.8 starts and then instantly stops
Everything worked perfectly except one of the final steps, launching mysql:
mysqld –skip-grant-tables –user=mysql
Was giving me the following message and then shutting down:
[ERROR] Can’t find messagefile ‘/usr/share/errmsg.sys’
After some googling I found the solution to be adding the following flag:
–lc-messages-dir=”/usr/local/mysql/share/english/”
To launch it and have it actually work, I used the following command:
mysqld –skip-grant-tables –user=mysql –lc-messages-dir=”/usr/local/mysql/share/english/
Recent Comments