“FAQ:MySQL”的版本间差异

来自Wikioe
跳到导航 跳到搜索
 
(未显示同一用户的29个中间版本)
第3行: 第3行:
__TOC__
__TOC__


== MySQL8忘记并重置密码 ==
== MySQL 忘记并重置密码 ==
=== 思路: ===
步骤:
# 密码丢失,必须采用无密码启动的方式进入系统,才能进行修改密码操作;
# 无密码模式启动 MySQL;
# (Mysql5.7+)password字段和password()函数,密码为'''authentication_string'''字段;
# 连接并修改密码;
# mysql8.0之前的版本加密规则是mysql_native_password,8.0之后是'''caching_sha2_password''';


=== 步骤: ===
=== '''设置跳过权限验证''' ===
# 修改配置文件<syntaxhighlight lang="shell" inline>vim /etc/my.cnf</syntaxhighlight>,添加<syntaxhighlight lang="shell" inline>skip-grant-table</syntaxhighlight>(跳过权限验证);
'''MySQL 5.7''' :
# 重启mysql服务:<syntaxhighlight lang="shell" inline>systemctl restart mysqld</syntaxhighlight>;
# 修改配置文件(“my.ini”或“/etc/my.cnf”):
# mysql登录(无需密码):<syntaxhighlight lang="shell" inline>mysql -uroot -p</syntaxhighlight>;
#: <syntaxhighlight lang="xml" highlight="">
# 刷新权限表:<syntaxhighlight lang="shell" inline>flush privileges;</syntaxhighlight>;
[mysqld]
# 重置密码:<syntaxhighlight lang="mysql">
...
use mysql;
 
alter user 'root'@'localhost' identified by 'newpassword';
# 跳过权限验证
skip-grant-tables
 
...
</syntaxhighlight>
</syntaxhighlight>
# 重置配置文件<syntaxhighlight lang="shell" inline>vim /etc/my.cnf</syntaxhighlight>,删除<syntaxhighlight lang="shell" inline>skip-grant-table</syntaxhighlight>;
# 重启服务器;
# 重启mysql服务:<syntaxhighlight lang="shell" inline>systemctl restart mysqld</syntaxhighlight>;
# 连接到 MySQL;


=== 其他: ===
 
* Linux服务操作
'''MySQL 8+''' :
*: <syntaxhighlight lang="Bash">
# 方法一:
systemctl start mysqld //开启服务
## 停止服务;
systemctl stop mysqld //停止服务
## 命令行:执行“'''mysqld --console --skip-grant-tables --shared-memory'''”(保持窗口);
systemctl restart mysqld //重启服务
## 连接到 MySQL;
systemctl status mysqld //服务状态查看
# 方法二:
## 停止服务;
## 创建一个“包含一条密码修改命令”的文本文件“mysqlc.txt”:
##: <syntaxhighlight lang="mysql" highlight="">
ALTER USER 'root'@'localhost' IDENTIFIED BY '';
</syntaxhighlight>
</syntaxhighlight>
* 查看用户相关信息:
## 命令行:启动服务器,并指定命令文件:“'''mysqld --init-file="D:\Program Files\MySQL\mysqlc.txt" --console'''”;
*: <syntaxhighlight lang="mysql">
## 关闭命令窗口,重启服务器;
select host, user, authentication_string, plugin from user;
 
 
:* MySQL 8 中修改配置文件的方式(“skip-grant-tables”)已失效:服务启动后马上停止!
 
=== '''修改密码''' ===
: <syntaxhighlight lang="mysql" highlight="">
USE mysql;
 
FLUSH PRIVILEGES;
 
ALTER USER 'root'@'localhost' IDENTIFIED BY '@eijux';
 
FLUSH PRIVILEGES;
</syntaxhighlight>
</syntaxhighlight>
*# host:用户登录方式,<code>'localhost'</code>本地登录,<code>'%'</code>可远程登录;
* 修改密码前先刷新权限,避免“1290 - The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement”问题;
*# authentication_string:用户密码;
* 通过“password_last_changed”(密码修改时间)字段,可以确定修改是否成功;
*# plugin:密码加密方式;
 
* (用指定加密方式)更改用户密码:
== 密码相关 ==
*: <syntaxhighlight lang="mysql">
user 表字段:
alter user 'root'@'localhost' identified with caching_sha2_password by 'newpassword';
: <syntaxhighlight lang="mysql" highlight="">
SELECT host, user, authentication_string, plugin FROM USER;
</syntaxhighlight>
</syntaxhighlight>
*: <syntaxhighlight lang="mysql">
* “'''host'''”:登录方式,“localhost”(本地登录)“%”(可远程登录);
alter user 'root'@'localhost' identified with mysql_native_password by 'newpassword';
* “'''authentication_string'''”:密码字段,相同密码根据不同认证插件得到的字段也不同;
** 5.7以前的密码字段是“password”;
* “'''plugin'''”:认证插件;
* “'''password_last_changed'''”:上次修改密码的时间;
 
 
认证插件:【默认插件设置在配置文件中】
* MySQL 5.7:默认“'''mysql_native_password'''”;
* MySQL 8:默认“'''caching_sha2_password'''”,可选“mysql_native_password”;
 
 
更新密码:
* MySQL 5.7:
*: MySQL 5.7.5 及以前:
*: <syntaxhighlight lang="mysql" highlight="">
SET PASSWORD FOR 'root'@'localhost' = PASSWORD('@eijux');
</syntaxhighlight>
</syntaxhighlight>
* 命令行方式无密码启动MySQL(不修改配置文件):【???】
*: MySQL 5.7.6 及以后:
*# 停止MySQL服务;
*: <syntaxhighlight lang="mysql" highlight="">
*# 命令行启动Mysql:
# 以下等效:
*#: <syntaxhighlight lang="shell">
 
mysqld --console --skip-grant-tables --shared-memory
UPDATE USER SET authentication_string=PASSWORD('@eijux') WHERE user='root' AND host='localhost';
 
UPDATE USER SET authentication_string=UPPER(CONCAT('*',SHA1(UNHEX(SHA1('@eijux'))))) WHERE user='root' AND host='localhost';
 
ALTER USER 'root'@'localhost' IDENTIFIED BY '@eijux';
</syntaxhighlight>
</syntaxhighlight>
* (进入mysql后)把 authentication_string 设置为空,所以可以免密码登录【???】:
* MySQL 8:
*: <syntaxhighlight lang="mysql">
*: '''<syntaxhighlight lang="mysql" highlight="">
use mysql;
# 使用配置的认证插件加密
update user set authentication_string='' where user='root';
ALTER USER 'root'@'localhost' IDENTIFIED BY '@eijux';
 
# 使用“mysql_native_password”加密:
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '@eijux';
 
# 使用“caching_sha2_password”加密:
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY '@eijux';
</syntaxhighlight>'''
** MySQL 8 中不能在使用“password”函数,但可以将密码字段置空:
**: '''<syntaxhighlight lang="mysql" highlight="">
UPDATE mysql.user SET authentication_string='' WHERE user='root' AND host='localhost';
</syntaxhighlight>'''
 
 
修改密码策略:【???】
: <syntaxhighlight lang="mysql" highlight="">
SET GLOBAL validate_password.length = 6; //密码长度
 
SET GLOBAL validate_password.policy = 'LOW'; //密码策略级别
 
FLUSH PRIVILEGES; //刷新权限
</syntaxhighlight>
</syntaxhighlight>
* 查看MySQL密码校验相关设置:
 
*: <syntaxhighlight lang="mysql" line>
== Linux 服务 ==
SHOW VARIABLES LIKE 'validate_password.%';
<syntaxhighlight lang="Bash">
systemctl start mysqld //开启服务
systemctl stop mysqld //停止服务
systemctl restart mysqld //重启服务
systemctl status mysqld //服务状态查看
</syntaxhighlight>
</syntaxhighlight>
* 修改密码策略:
*: <syntaxhighlight lang="mysql">
set global validate_password.length = 6; //密码长度


set global validate_password.policy = 'LOW'; //密码策略级别
== 错误信息 ==
=== “1045-Access denied for user 'root'@'localhost'(using password:YES)” ===
如果连接到 MySQL 时出现该提示,即 root 用户对于 localhost 之外的连接被拒绝,需要修改其 host 为“%”:
<syntaxhighlight lang="mysql" highlight="">
USE mysql;


FLUSH PRIVILEGES; //刷新权限
UPDATE USER SET host = '%' WHERE user = 'root';
 
FLUSH PRIVILEGES;
</syntaxhighlight>
 
=== “1290 - The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement” ===
执行权限相关命令时出现该提示,则需要在该命令前先执行:
<syntaxhighlight lang="mysql" highlight="">
FLUSH PRIVILEGES;
</syntaxhighlight>
</syntaxhighlight>
=== “2003 - can't connect to mysql server on 'localhost' (10060 "Unknown error") ” ===
检查下服务是否启动,可能已崩溃。
* MySQL 8 用 skip-grant-tables 时,启动不到一分钟就自动停止了【该方法已失效】

2022年8月23日 (二) 23:45的最新版本


MySQL 忘记并重置密码

步骤:

  1. 无密码模式启动 MySQL;
  2. 连接并修改密码;

设置跳过权限验证

MySQL 5.7

  1. 修改配置文件(“my.ini”或“/etc/my.cnf”):
    [mysqld]
    ...
    
    # 跳过权限验证
    skip-grant-tables
    
    ...
    
  2. 重启服务器;
  3. 连接到 MySQL;


MySQL 8+

  1. 方法一:
    1. 停止服务;
    2. 命令行:执行“mysqld --console --skip-grant-tables --shared-memory”(保持窗口);
    3. 连接到 MySQL;
  2. 方法二:
    1. 停止服务;
    2. 创建一个“包含一条密码修改命令”的文本文件“mysqlc.txt”:
      ALTER USER 'root'@'localhost' IDENTIFIED BY '';
      
    3. 命令行:启动服务器,并指定命令文件:“mysqld --init-file="D:\Program Files\MySQL\mysqlc.txt" --console”;
    4. 关闭命令窗口,重启服务器;


  • MySQL 8 中修改配置文件的方式(“skip-grant-tables”)已失效:服务启动后马上停止!

修改密码

USE mysql;

FLUSH PRIVILEGES;

ALTER USER 'root'@'localhost' IDENTIFIED BY '@eijux';

FLUSH PRIVILEGES;
  • 修改密码前先刷新权限,避免“1290 - The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement”问题;
  • 通过“password_last_changed”(密码修改时间)字段,可以确定修改是否成功;

密码相关

user 表字段:

SELECT host, user, authentication_string, plugin FROM USER;
  • host”:登录方式,“localhost”(本地登录)“%”(可远程登录);
  • authentication_string”:密码字段,相同密码根据不同认证插件得到的字段也不同;
    • 5.7以前的密码字段是“password”;
  • plugin”:认证插件;
  • password_last_changed”:上次修改密码的时间;


认证插件:【默认插件设置在配置文件中】

  • MySQL 5.7:默认“mysql_native_password”;
  • MySQL 8:默认“caching_sha2_password”,可选“mysql_native_password”;


更新密码:

  • MySQL 5.7:
    MySQL 5.7.5 及以前:
    SET PASSWORD FOR 'root'@'localhost' = PASSWORD('@eijux');
    
    MySQL 5.7.6 及以后:
    # 以下等效:
    
    UPDATE USER SET authentication_string=PASSWORD('@eijux') WHERE user='root' AND host='localhost';
    
    UPDATE USER SET authentication_string=UPPER(CONCAT('*',SHA1(UNHEX(SHA1('@eijux'))))) WHERE user='root' AND host='localhost';
    
    ALTER USER 'root'@'localhost' IDENTIFIED BY '@eijux';
    
  • MySQL 8:
    # 使用配置的认证插件加密
    ALTER USER 'root'@'localhost' IDENTIFIED BY '@eijux';
    
    # 使用“mysql_native_password”加密:
    ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '@eijux';
    
    # 使用“caching_sha2_password”加密:
    ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY '@eijux';
    
    • MySQL 8 中不能在使用“password”函数,但可以将密码字段置空:
      UPDATE mysql.user SET authentication_string='' WHERE user='root' AND host='localhost';
      


修改密码策略:【???】

SET GLOBAL validate_password.length = 6;		//密码长度

SET GLOBAL validate_password.policy = 'LOW';	//密码策略级别

FLUSH PRIVILEGES;								//刷新权限

Linux 服务

systemctl start mysqld		//开启服务
systemctl stop mysqld 		//停止服务
systemctl restart mysqld 	//重启服务
systemctl status mysqld 	//服务状态查看

错误信息

“1045-Access denied for user 'root'@'localhost'(using password:YES)”

如果连接到 MySQL 时出现该提示,即 root 用户对于 localhost 之外的连接被拒绝,需要修改其 host 为“%”:

USE mysql;

UPDATE USER SET host = '%' WHERE user = 'root';

FLUSH PRIVILEGES;

“1290 - The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement”

执行权限相关命令时出现该提示,则需要在该命令前先执行:

FLUSH PRIVILEGES;

“2003 - can't connect to mysql server on 'localhost' (10060 "Unknown error") ”

检查下服务是否启动,可能已崩溃。

  • MySQL 8 用 skip-grant-tables 时,启动不到一分钟就自动停止了【该方法已失效】