查看“FAQ:MySQL”的源代码
←
FAQ:MySQL
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
[[category:MySQL]] __TOC__ == MySQL 忘记并重置密码 == 步骤: # 无密码模式启动 MySQL; # 连接并修改密码; === '''设置跳过权限验证''' === '''MySQL 5.7''' : # 修改配置文件(“my.ini”或“/etc/my.cnf”): #: <syntaxhighlight lang="xml" highlight=""> [mysqld] ... # 跳过权限验证 skip-grant-tables ... </syntaxhighlight> # 重启服务器; # 连接到 MySQL; '''MySQL 8+''' : # 方法一: ## 停止服务; ## 命令行:执行“'''mysqld --console --skip-grant-tables --shared-memory'''”(保持窗口); ## 连接到 MySQL; # 方法二: ## 停止服务; ## 创建一个“包含一条密码修改命令”的文本文件“mysqlc.txt”: ##: <syntaxhighlight lang="bash" highlight=""> ALTER USER 'root'@'localhost' IDENTIFIED BY ''; </syntaxhighlight> ## 命令行:启动服务器,并指定命令文件:“'''mysqld --init-file="D:\Program Files\MySQL\mysqlc.txt" --console'''”; ## 关闭命令窗口,重启服务器; :* MySQL 8 中修改配置文件的方式(“skip-grant-tables”)已失效:服务启动后马上停止! === '''修改密码''' === : <syntaxhighlight lang="mysql" highlight=""> use mysql; flush privileges; alter user 'root'@'localhost' identified by '@eijux'; flush privileges; </syntaxhighlight> * 修改密码前先刷新权限,避免“1290 - The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement”问题; * 通过“password_last_changed”(密码修改时间)字段,可以确定修改是否成功; == 密码相关 == user 表字段: : <syntaxhighlight lang="mysql" highlight=""> select host, user, authentication_string, plugin from user; </syntaxhighlight> * “'''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 及以前: *: <syntaxhighlight lang="mysql" highlight=""> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('@eijux'); </syntaxhighlight> *: MySQL 5.7.6 及以后: *: <syntaxhighlight lang="mysql" highlight=""> # 以下等效: UPDATE mysql.user SET authentication_string=PASSWORD('@eijux') WHERE user='root' and host='localhost'; UPDATE mysql.user SET authentication_string=UPPER(CONCAT('*',SHA1(UNHEX(SHA1('@eijux'))))) WHERE user='root' and host='localhost'; alter mysql.user 'root'@'localhost' identified by '@eijux'; </syntaxhighlight> * MySQL 8: *: '''<syntaxhighlight lang="mysql" highlight=""> # 使用配置的认证插件加密 alter mysql.user 'root'@'localhost' identified by '@eijux'; # 使用“mysql_native_password”加密: alter mysql.user 'root'@'localhost' identified with mysql_native_password by '@eijux'; # 使用“caching_sha2_password”加密: alter mysql.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> == Linux 服务 == <syntaxhighlight lang="Bash"> systemctl start mysqld //开启服务 systemctl stop mysqld //停止服务 systemctl restart mysqld //重启服务 systemctl status mysqld //服务状态查看 </syntaxhighlight> == 错误信息 == === “1045-Access denied for user 'root'@'localhost'(using password:YES)” === 如果连接到 MySQL 时出现该提示,即 root 用户对于 localhost 之外的连接被拒绝,需要修改其 host 为“%”: <syntaxhighlight lang="mysql" highlight=""> use mysql; 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> === “2003 - can't connect to mysql server on 'localhost' (10060 "Unknown error") ” === 检查下服务是否启动,可能已崩溃。 * MySQL 8 用 skip-grant-tables 时,启动不到一分钟就自动停止了【该方法已失效】
返回至“
FAQ:MySQL
”。
导航菜单
个人工具
登录
命名空间
页面
讨论
大陆简体
已展开
已折叠
查看
阅读
查看源代码
查看历史
更多
已展开
已折叠
搜索
导航
首页
最近更改
随机页面
MediaWiki帮助
笔记
服务器
数据库
后端
前端
工具
《To do list》
日常
阅读
电影
摄影
其他
Software
Windows
WIKIOE
所有分类
所有页面
侧边栏
站点日志
工具
链入页面
相关更改
特殊页面
页面信息