Can#39;t connect to local MySQL server through socket #39;/var/lib/mysql/mysql.sock#39; (2)(无法通过 socket /var/lib/mysql/mysql.sock 连接到本地 MySQL 服务器 (2))
问题描述
当我尝试连接到 mysql 时出现以下错误:
I am getting the following error when I try to connect to mysql:
无法通过socket'/var/lib/mysql/mysql.sock'连接本地MySQL服务器(2)
这个错误有解决办法吗?其背后的原因可能是什么?
Is there a solution for this error? What might be the reason behind it?
推荐答案
确保你的 mysql 服务正在运行
Ensure that your mysql service is running
service mysqld start
然后,尝试以下操作之一:
Then, try the one of the following following:
(如果你还没有为mysql设置密码)
(if you have not set password for mysql)
mysql -u root
如果您已经设置了密码
mysql -u root -p
这篇关于无法通过 socket '/var/lib/mysql/mysql.sock' 连接到本地 MySQL 服务器 (2)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法通过 socket '/var/lib/mysql/mysql.sock' 连接到本地 MySQL 服务器 (2)


基础教程推荐
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 在多列上分布任意行 2021-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- oracle区分大小写的原因? 2021-01-01