详解Centos7 修改mysql指定用户的密码
本文介绍了Centos7修改mysql指定用户的密码,具体如下:
1.登陆mysql或者mariadb(两种任选其一)
[root@localhost~]#mysql-uroot [root@localhost~]#mysql-uroot-p
2.切换到存储用户名和密码的数据库
MariaDB[mysql]>usemysql;回车,会显示以下内容 ReadingtableinformationforcompletionoftableandcolumnnamesYoucanturnoffthisfeaturetogetaquickerstartupwith-A Databasechanged
3.修改密码,适用password()函数进行加密,实际上就是执行sql语句来更新指定用户的密码
MariaDB[mysql]>updateusersetpassword=password('新密码')whereuser='要更新密码的用户名';回车 ->; QueryOK,0rowsaffected(0.00sec) Rowsmatched:5Changed:0Warnings:0
4.刷新用户权限列表
MariaDB[mysql]>flushprivileges;回车 QueryOK,0rowsaffected(0.00sec)
5.退出mysql登陆
MariaDB[mysql]>quit Bye
6.重启mysql或者mariadb服务
[root@localhost~]#servicemysqldrestart(重启mysql) [root@localhost~]#servicemariadbrestart(重启mariadb)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。