gpt4 book ai didi

详解Centos7 修改mysql指定用户的密码

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 24 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章详解Centos7 修改mysql指定用户的密码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文介绍了Centos7 修改mysql指定用户的密码,具体如下:

1.登陆mysql或者mariadb(两种任选其一) 。

?
1
2
[root@localhost ~] # mysql -u root
[root@localhost ~] # mysql -uroot -p

2.切换到存储用户名和密码的数据库 。

?
1
2
3
MariaDB [mysql]> use mysql;回车,会显示以下内容
Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A
Database changed

3.修改密码,适用password()函数进行加密,实际上就是执行sql语句来更新指定用户的密码 。

?
1
2
3
4
MariaDB [mysql]> update user set password=password( '新密码' ) where user= '要更新密码的用户名' ;回车
  -> ;
Query OK, 0 rows affected (0.00 sec)
Rows matched: 5 Changed: 0 Warnings: 0

4.刷新用户权限列表 。

?
1
2
MariaDB [mysql]> flush privileges;回车
Query OK, 0 rows affected (0.00 sec)

5.退出mysql登陆 。

?
1
2
MariaDB [mysql]> quit
Bye

6.重启mysql或者mariadb服务 。

?
1
2
[root@localhost ~] # service mysqld restart(重启mysql)
[root@localhost ~] # service mariadb restart(重启mariadb)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:http://www.cnblogs.com/hafiz/p/5874110.html 。

最后此篇关于详解Centos7 修改mysql指定用户的密码的文章就讲到这里了,如果你想了解更多关于详解Centos7 修改mysql指定用户的密码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com