首页 > 后端开发 > php教程 > 碰到个问题,用网上提供的方法都不好用,求教

碰到个问题,用网上提供的方法都不好用,求教

WBOY
发布: 2016-06-23 13:52:43
原创
823 人浏览过

Warning: mysqli_real_connect(): (HY000/2002): No such file or directory in


回复讨论(解决方案)

提供的信息太少

For some reason mysql on OS X gets the locations of the required socket file a bit wrong, but thanks to a veritable wizard I know (that's you, Gavin) the solution is as simple as setting up a symbolic link.

You may have a socket (appearing as a zero length file) as /tmp/mysql.sock or /var/mysql/mysql.sock but 1 or more apps is looking in the other location for it.

Rather than move the socket and have to edit config files and remember to keep edited files local and away from servers where the paths are correct, simply create a symbolic link so your mac finds the required socket, even when it's looking in the wrong place!

If you have /tmp/mysql.sock but no /var/mysql/mysql.sock then...

cd /var sudo mkdir mysqlsudo chmod 755 mysqlcd mysqlln -s /tmp/mysql.sock mysql.sock
登录后复制


If you have /var/mysql/mysql.sock but no /tmp/mysql.sock then

cd /tmpln -s /var/mysql/mysql.sock mysql.sock
登录后复制


You will need permissions to create the directory and link, so just prefix the commands above with sudo if necessary.

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板