MySQL Database won't start in XAMPP Manager-osx

后端 未结 30 1257
暗喜
暗喜 2020-12-04 05:26

I downloaded XAMPP about a month ago and it was working just fine. Today I installed a voice recognition software and then restarted my computer. Ever since, MySQL won\'t st

30条回答
  •  -上瘾入骨i
    2020-12-04 05:52

    This could be due to the fact that another instance of mysqd is already running in your mac-book-pro (MacOs-10). It's next to impossible to kill/pkill mysqld or ....I tried that route many times, with out any success. Finally the following worked for me :

    launchctl unload -w /Library/LaunchDaemons/com.oracle.oss.mysql.mysqld.plist
    

    wait a few minutes and check with

    ps -ef|grep mysqld
    

    It should be gone!

提交回复
热议问题