MySQL doesn't starts on AMPPS OS X

前端 未结 2 1618
忘了有多久
忘了有多久 2021-02-06 14:06

I have I problem with starting mysql using AMPPS. I\'m Using OS X Maverics and last version of Ammps. After little system crash and restart I can`t start mysql.

mysql.er

相关标签:
2条回答
  • 2021-02-06 14:32

    Solve!

    1. Open AMPPS Application -> MySQL Tab -> Configuration.

    2. In [mysqld] section, add the following line: innodb_force_recovery = 1

    3. Save the file and try starting MySQL

    4. Remove that line which you just added and Save.

    0 讨论(0)
  • 2021-02-06 14:42

    So I was facing a similar issue and what I tried was following:-

    find / -name mysql

    From the output of above command remove all the search results.Then do following:-

    brew uninstall mysql
    brew clean
    

    Then reboot your machine once and then install once again using following:-

    brew install mysql
    

    P.S: I was getting this error error so I could not take backup of my db but I had not so much important data in DB so I removed it anyways

    0 讨论(0)
提交回复
热议问题