Mysql忘记root密码:修订间差异

来自三线的随记
无编辑摘要
无编辑摘要
 
第20行: 第20行:
=== 附 ===
=== 附 ===
plugin字段
plugin字段
--plugin-dir=/usr/lib64/mysql/plugin 


auth_socket [ubuntu是auth_socket,unix_socket不知道在什么情况下用]
auth_socket [ubuntu是auth_socket,unix_socket不知道在什么情况下用]

2019年5月15日 (三) 17:54的最新版本

Windows系统

结束/关闭mysql服务端

跳过权限表认证

mysqld --skip-grant-tables

开启新的CMD

use mysql;
update user set password = password("xxx") where user = "root";
flush pivileges;

linux系统

/etc/my.cnf

mysqld块

skip-grant-tables

plugin字段

--plugin-dir=/usr/lib64/mysql/plugin 

auth_socket [ubuntu是auth_socket,unix_socket不知道在什么情况下用]

unix_socket

mysql_native_password