mysql 1524错误_mysql ERROR 1524 (HY000): Plugin 'unix_socket' is not loaded解决方法

这篇博客介绍了如何在Linux环境下重置MySQL root用户的密码,并解决因使用'localhost'导致的Socket错误。首先,停止MySQL服务,然后以无密码方式启动,进入MySQL客户端修改root用户的密码和认证方式。接着,重置并重启MySQL服务。如果遇到Socket错误,可以尝试创建目录并更改权限,或者使用127.0.0.1代替'localhost'来连接数据库。
摘要由CSDN通过智能技术生成

1. first, run these bash commands

sudo /etc/init.d/mysql stop # stop mysql service

sudo mysqld_safe --skip-grant-tables & # start mysql without password

# enter -> go

mysql -uroot # connect to mysql

2. then run mysql commands => copy paste this to cli manually

use mysql; # use mysql table

update user set authentication_string=PASSWORD("") where User='root'; # update password to nothing

update user set plugin="mysql_native_password" where User='root'; # set password resolving to default mechanism for root user

flush privileges;

quit;

3. run more bash commands

sudo /etc/init.d/mysql stop

sudo /etc/init.d/mysql start # reset mysql

# try login to database, just press enter at password prompt because your password is now blank

mysql -u root -p

4. Socket issue (from your comments)

When you see a socket error, a community came with 2 possible solutions:

sudo mkdir -p /var/run/mysqld; sudo chown mysql /var/run/mysqld

sudo mysqld_safe --skip-grant-tables &

Blind paths and possible edge errors

Use 127.0.0.1 instead of localhost

mysql -uroot # "-hlocalhost" is default

Can lead to "missing file" or slt error.

mysql -uroot -h127.0.0.1

Works better.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值