mysql 连接数据库 会出现什么 mysql.sock的问题
1.首先确定mysql有没有启动
service mysql status
因为mysql启动后才会有mysql.sock文件
2.用mysql -h127.0.0.1 试试
我试的是 没有输入登录密码 可以确定我们可以进去
进入 /etc/my.cnf
在[mysqld]下面加上 skip-grant-tables ,
这样的话 所有的密码都可以登录
# mysql -uroot -p
mysql> use mysql;
mysql> update user set password=password(‘123‘) where user=‘root‘;
mysql> flush privileges;
退出mysql
删除skip-grant-tables
重启mysql,完成。
原文地址:https://www.cnblogs.com/huobi/p/9735428.html
时间: 2024-11-06 07:49:43