Cannot find mysql.sock(找不到 mysql.sock)
问题描述
我只需要重新安装 mysql,但在启动时遇到了问题.它找不到套接字(mysql.sock).问题是我也不能.在我的 Mac OS X 10.4 终端中,我输入:locate mysql.sock
,然后返回 /private/tmp/mysql.sock
.套接字文件存在于该位置是有道理的,但实际上并不存在.
I just had to re-install mysql and I am having a problem starting it up. It cannot find the socket (mysql.sock). The problem is that neither can I. In my Mac OS X 10.4 terminal, I type: locate mysql.sock
, and I get back /private/tmp/mysql.sock
. It makes sense that the socket file exist in that location, but it actually does not.
如何找到套接字文件?
How can I find the socket file?
如果 locate 返回一个错误的位置,它必须有某种内存和可能的索引.如何刷新该索引?
If locate is returning a false location, it must have some sort of memory and probably indexes. How can I refresh that index?
推荐答案
回答你问题的第一部分:
to answer the first part of your question:
运行
% mysqladmin -p -u <user-name> variables
并检查socket"变量
and check the 'socket' variable
这篇关于找不到 mysql.sock的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:找不到 mysql.sock
基础教程推荐
- SQL Server 2016更改对象所有者 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01