XAMPP - Mysql stopped working on OS X Yosemite (10.10)

二次信任 提交于 2019-11-30 13:38:43

This seems to indicate that you can edit:

/Applications/XAMPP/xamppfiles/xampp

and look for:

$XAMPP_ROOT/bin/mysql.server start > /dev/null &

and add unset DYLD_LIBRARY_PATH on top of it. It should look like:

unset DYLD_LIBRARY_PATH
$XAMPP_ROOT/bin/mysql.server start > /dev/null &

It seems you could also edit:

/Applications/mampstack-version/mysql/scripts/ctl.sh

and add the unset to the top of that file as well:

#!/bin/sh
unset DYLD_LIBRARY_PATH
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!