时间:2021-05-02
前言:
在日常使用数据库的过程中,难免会遇到需要修改账号密码的情景,比如密码太简单需要修改、密码过期需要修改、忘记密码需要修改等。本篇文章将会介绍需要修改密码的场景及修改密码的几种方式。
1.忘记 root 密码
忘记 root 密码的场景还是比较常见的,特别是自己搭的测试环境经过好久没用过时,很容易记不得当时设置的密码。这个时候一般常用的方法是跳过权限验证,然后更改 root 密码,之后再启用权限验证。以 MySQL 5.7 版本为例简单讲下主要过程:
首先修改配置文件,在[mysqld]部分加上一句:skip-grant-tables ,加上此参数的目的是跳过权限验证。然后重启数据库,数据库再次启动后,我们就可以不用密码直接登录数据库修改密码了。
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 #skip-grant-tables模式下修改root密码 [root@host~]#mysql WelcometotheMySQLmonitor.Commandsendwith;or\g. YourMySQLconnectionidis16 Serverversion:5.7.23-logMySQLCommunityServer(GPL) Copyright(c)2000,2018,Oracleand/oritsaffiliates.Allrightsreserved. OracleisaregisteredtrademarkofOracleCorporationand/orits affiliates.Othernamesmaybetrademarksoftheirrespective owners. Type'help;'or'\h'forhelp.Type'\c'toclearthecurrentinputstatement. mysql>updatemysql.usersetauthentication_string=password('xxxxxx')whereuser='root'andhost='localhost'; QueryOK,0rowsaffected,1warning(0.00sec) Rowsmatched:1Changed:0Warnings:1 mysql>flushprivileges; QueryOK,0rowsaffected(0.01sec)修改完 root 密码后,再次去除 skip-grant-tables 参数,然后重启下数据库即可。
2.几种修改密码的方法
除去忘记密码,可能还有其他情景需要修改密码,这时候就可以采取普通方式修改密码了。还是以 MySQL 5.7 版本为例,介绍几种常用的修改密码的方法。
使用 alter user 修改
比如如果想更改 testuser 账号的密码,我们可以使用 root 账号登录,然后执行 alter user 命令更改 testuser 账号的密码。
? 1 2 3 4 5 mysql>alteruser'testuser'@'%'identifiedby'Password1'; QueryOK,0rowsaffected(0.01sec) mysql>flushprivileges; QueryOK,0rowsaffected(0.00sec)使用 SET PASSWORD 命令
使用 SET PASSWORD 修改密码命令格式为 SET PASSWORD FOR 'username'@'host' = PASSWORD('newpass'); 同样是使用 root 账号可修改其他账号的密码。
? 1 2 3 4 5 mysql>SETPASSWORDFOR'testuser'@'%'=PASSWORD('Password2'); QueryOK,0rowsaffected,1warning(0.00sec) mysql>flushprivileges; QueryOK,0rowsaffected(0.00sec)使用 mysqladmin 修改密码
使用 mysqladmin 命令修改账号密码格式为 mysqladmin -u用户名 -p旧密码 password 新密码
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 [root@host~]#mysqladmin-utestuser-pPassword2passwordPassword3 mysqladmin:[Warning]Usingapasswordonthecommandlineinterfacecanbeinsecure. Warning:Sincepasswordwillbesenttoserverinplaintext,usesslconnectiontoensurepasswordsafety. [root@host~]#mysql-utestuser-pPassword3 mysql:[Warning]Usingapasswordonthecommandlineinterfacecanbeinsecure. WelcometotheMySQLmonitor.Commandsendwith;or\g. YourMySQLconnectionidis2388 Serverversion:5.7.23-logMySQLCommunityServer(GPL) Copyright(c)2000,2018,Oracleand/oritsaffiliates.Allrightsreserved. OracleisaregisteredtrademarkofOracleCorporationand/orits affiliates.Othernamesmaybetrademarksoftheirrespective owners. Type'help;'or'\h'forhelp.Type'\c'toclearthecurrentinputstatement. mysql>直接 update user 表
其实 MySQL 所以的账号信息都存储在 mysql.user 表里面,我们也可以直接通过 update user 表来修改密码。
? 1 2 3 4 5 6 7 8 9 10 #5.7及之后版本 mysql>updatemysql.usersetauthentication_string=password('Password4')whereuser='testuser'andhost='%'; QueryOK,1rowaffected,1warning(0.06sec) Rowsmatched:1Changed:1Warnings:1 mysql>flushprivileges; QueryOK,0rowsaffected(0.01sec) #5.6及之前版本 updatemysql.usersetpassword=password('新密码')whereuser='用户名'andhost='host';3.设置 login-path 本地快捷登陆
为了防止密码暴露及忘记密码,我们还可以设置 login-path 来实现在本地不输密码快捷登录。
login-path 是 MySQL 5.6 开始支持的新特性。通过借助 mysql_config_editor 工具将登陆 MySQL 服务的认证信息加密保存在 .mylogin.cnf 文件(默认位于用户主目录)。MySQL 客户端工具可通过读取该加密文件连接 MySQL ,实现快捷登录。
假设我们想配置 root 账号在本地快捷登录,可以这么做:
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 #执行回车后需要输入一次root密码 [root@host~]#mysql_config_editorset--login-path=root-uroot-hlocalhost-p-P3306 Enterpassword: #配置完成后可以使用login-path登录 [root@host~]#mysql--login-path=root WelcometotheMySQLmonitor.Commandsendwith;or\g. YourMySQLconnectionidis2919 Serverversion:5.7.23-logMySQLCommunityServer(GPL) Copyright(c)2000,2018,Oracleand/oritsaffiliates.Allrightsreserved. OracleisaregisteredtrademarkofOracleCorporationand/orits affiliates.Othernamesmaybetrademarksoftheirrespective owners. Type'help;'or'\h'forhelp.Type'\c'toclearthecurrentinputstatement. mysql>总结:
本篇文章主要介绍了修改数据库账号密码的几种方法,基本涵盖了所有的场景。这里也提醒下各位,数据库账号最好限制ip段登录,密码尽量复杂些,最好能够定期修改,特别是重要的环境不能有半点马虎。年底了,安全才是王道。
以上就是MySQL修改密码的几种方式的详细内容,更多关于MySQL修改密码的资料请关注服务器之家其它相关文章!
原文链接:https://mp.weixin.qq.com/s/7yaDpqGCkZRnUwNY4d8tsg
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在这里介绍xampp修改mysql默认密码的大概过程是先利用xampp的phpmyadmin进入修改mysql密码,修改之后我们再修改xampp中phpmyad
问题描述:买了mac电脑,第一次装mysql,不知道初始密码,如何修改初始密码记录下。解决方式:http://dev.mysql.com/doc/refman/
MySQL修改密码实例详解许久不用MySQL了,今天打开HediSQL连接mysql时发现root密码忘记了,修改密码操作捣鼓了一阵子,记录一下,以备后用。(W
MySQL数据库中如何修改root用户的密码呢?下面总结了修改root用户密码的一些方法1:使用setpassword语句修改mysql>selectuser(
Centos安装MySQL可以参考之前写的一篇文章Centos7.3安装Mysql5.7并修改初始密码windows安装mysql5.7有两种方式1、下载.ms