MySQL 服务器连接套接字错误

MySQL 服务器连接套接字错误

我刚刚在 SunOS 5.11 上编译了 MySQL 5.1(我想是 xD),现在遇到了一些问题。我可以通过以下方式启动服务器

./bin/mysqld_safe &

我可以运行mysql*通过 Putty 在 /bin 中安装工具,但是我无法通过 PHP 连接到服务器。目前我收到以下错误

Can't connect to local MySQL server through socket '/tmp/mysql.sock'

使用简单命令

mysql_connect("localhost", "root", "password") or die("n00b!");

请记住,我登录的系统没有管理权限,因此我无法编辑太多的系统文件......

你能帮我一下如何重新配置​​服务器,以便可以通过当地的php 脚本和 phpMyAdmin?

问候!

答案1

您是否尝试过通过 TCP/IP 连接?即使用 127.0.0.1 而不是 localhost。

干杯

相关内容