MySQL with MAMP does not work with OSX Yosemite 10.10

前端 未结 15 856
灰色年华
灰色年华 2020-12-28 16:15

[EDIT] The last version of MAMP with the last version of OSX Yosemite works fine.

I installed the beta of Yosemite two month ago, no problem with MAMP. With the last

15条回答
  •  悲哀的现实
    2020-12-28 17:18

    On MAMP, I was able to get MySQL to work by editing /Applications/MAMP/bin/startMysql.sh and unsetting DYLD_LIBRARY_PATH. So the updated script looks like this:

    # /bin/sh
    unset DYLD_LIBRARY_PATH
    /Applications/MAMP/Library/bin/mysqld_safe... etc.      
    

    It also required killing all MySQL processes previously started by MAMP.

提交回复
热议问题