Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/macos/8.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Macos Can';t通过套接字tmp/MySQL.sock连接到本地MySQL服务器_Macos_Mysql_Mysql.sock_Mysqladmin - Fatal编程技术网

Macos Can';t通过套接字tmp/MySQL.sock连接到本地MySQL服务器

Macos Can';t通过套接字tmp/MySQL.sock连接到本地MySQL服务器,macos,mysql,mysql.sock,mysqladmin,Macos,Mysql,Mysql.sock,Mysqladmin,在尝试访问终端(flush_主机)中的一些mysqladmin权限后,我注意到套接字问题再次出现了错误 无法通过套接字“/tmp/MySQL.sock”(2)*连接到本地MySQL服务器 我目前没有正在运行的服务器 如何解决这个问题呢?哇,你自己提到过,你“必须”运行一个可以连接它的服务器,请考虑: root@debian:/etc/init.d# /etc/init.d/mysql stop [ ok ] Stopping MySQL database server: mysqld. root

在尝试访问终端(flush_主机)中的一些mysqladmin权限后,我注意到套接字问题再次出现了错误

无法通过套接字“/tmp/MySQL.sock”(2)*连接到本地MySQL服务器

我目前没有正在运行的服务器


如何解决这个问题呢?

哇,你自己提到过,你“必须”运行一个可以连接它的服务器,请考虑:

root@debian:/etc/init.d# /etc/init.d/mysql stop
[ ok ] Stopping MySQL database server: mysqld.
root@debian:/etc/init.d# mysql 
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
root@debian:/etc/init.d# /etc/init.d/mysql start
[ ok ] Starting MySQL database server: mysqld ..
[info] Checking for tables which need an upgrade, are corrupt or were 
not closed cleanly..
root@debian:/etc/init.d# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 37
Server version: 5.5.24-5 (Debian)

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 

好的,看来在这过程中一定有一些混乱的配置。我回到了scratch,安装了最新的.DMG for MySQL,现在一切正常。如果你有.sock问题,我猜你最好的选择是重新安装MySQL,这根本不需要很长时间。谢谢你的帮助

尝试删除
数据库.yml
文件中的套接字字段,或者使用正确的路径将其更改为
mysql.sock
,如果您知道它在计算机中的位置

等等,您是否正在运行服务器???如果您当前没有运行MySQL服务器,您希望如何连接到它?!我所说的当前没有运行服务器,是指额外的服务器(如MAMP)。我尝试使用mysqld只是为了得到“mysql.host不存在”的消息——为这篇文章的写作方式感到抱歉。谢谢你的回复。如上所述,我的意思是没有其他服务器运行,如MAMP。另外,我的/etc/文件夹中没有init.d文件,因此我无法执行涉及init.d的解决方案