博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
阅读量:6687 次
发布时间:2019-06-25

本文共 1495 字,大约阅读时间需要 4 分钟。

我在源码编译安装mysql后,虽然mysql服务可以正常启动,但是当我直接执行mysql后,出现了错误。

错误提示如下:

[root@server98 ~]# mysql

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

出现错误原因:

由于mysql 默认的mysql.sock 是在/var/lib/mysql/mysql.sock,但linux系统总是去/tmp/mysql.sock查找,所以会报错。

[root@server98 ~]# find / -name mysql.sock

/usr/local/mysql/data/mysql.sock

解决方法如下:

1.直接指定mysql通道

[root@server98 ~]# mysql --socket=/usr/local/mysql/data/mysql.sock

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 4

Server version: 5.6.10 Source distribution

Copyright (c) 2000, 2013, 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>

2.创建符号链接(软链接)

mysql.sock增加软链接(相当与Windows下的快捷方式)

[root@server98 tmp]#ln -s /usr/local/mysql/data/mysql.sock /tmp/mysql.sock

[root@server98 ~]# mysql

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 5

Server version: 5.6.10 Source distribution

Copyright (c) 2000, 2013, 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>

转载于:https://www.cnblogs.com/xautlmx/p/3986893.html

你可能感兴趣的文章
脚本填报表的条件查询
查看>>
好程序员web前端分享js技巧和js中一些常见的陷阱
查看>>
从一个开发的角度看负载均衡和LVS
查看>>
Spring Boot(12)——使用MongoDB
查看>>
c++基础(上) 听课流水账
查看>>
Observable
查看>>
k8s使用deployment升级
查看>>
PostgreSQL 动态更新 C 语言函数
查看>>
ionic3项目实战教程 - 第10讲 ionic3分类菜单设计(类似外卖)
查看>>
深度解析 | K8S API Server之入门须知
查看>>
LeanEngine 中使用 WebSocket
查看>>
如何利用百度长尾高指数词,提高网站百度权重
查看>>
震惊!这个控件绝对值得收藏。轻松实现圆角、文字描边、状态指示等效果
查看>>
迎双11十周年,OceanBase 2.0挑战新巅峰
查看>>
安卓手机为什么越用越卡, 程序员来告诉你!
查看>>
添加百度统计,有利于网站SEO,百度终于发声了
查看>>
Redis(一) 安装
查看>>
轻松搞定分组报表中的各种排序
查看>>
Model-driven IIoT System for Manufacturing Activities
查看>>
浅入分析和Linux内核相关的文件夹/proc和/sys .
查看>>