Mysql server on MAMP won't start

后端 未结 6 1147
小蘑菇
小蘑菇 2020-12-07 19:05

My Mysql server on MAMP won\'t start. This is the error:

161224 00:15:00 mysqld_safe Logging to \'/Applications/MAMP/logs/mysql_error_log.err\'. 16

6条回答
  •  庸人自扰
    2020-12-07 19:58

    My MAMPs MySQL stopped working after a power failure, this worked for me:

    1. Stop servers from terminal

      • cd /Applications/MAMP/bin
      • ./stop.sh
    2. Create my.cnf file in /Applications/MAMP/conf with the following: [mysqld] innodb_force_recovery = 1

    3. Start MySQL from same terminal window.

      • ./startMysql.sh
    4. Stop MySQL once it has recovered (Check the log in /Applications/MAMP/logs/mysql_error_log.err).

      • ./stopMysql.sh
    5. Remove the lines from my.cnf, save and start the servers as usual from the MAMP app.

提交回复
热议问题