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

详解Centos7 修改mysql指定用户的密码,第1张

概述本文介绍了Centos7 修改mysql指定用户的密码,具体如下:1.登陆mysql或者mariadb(两种任选其一)[root@localhost ~]# mysql -u root[root@localhost ~]# mysql -uroot -p2.切换到存储用户名和密码的数据库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 -ADatabase changed3.修改密码,适用password()函数进行加密,实际上就是执行sql语句来更新指定用户的密码MariaDB [mysql]> update user set password=password('新密码') where user='要更新密码的用户名';回车-> ;Query OK, 0 rows affected (0.00 sec)Rows matched: 5 Changed: 0 Warnings: 04.刷新用户权限列表MariaDB [mysql]> flush privileges;回车Query OK, 0 rows affected (0.00 sec)5.退出mysql登陆MariaDB [mysql]> quitBye6.重启mysql或者mariadb服务[root@localhost ~]# service mysqld restart(重启mysql)[root@localhost ~]# service mariadb restart(重启mariadb) 

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

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

[root@localhost ~][root@localhost ~]

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

MariaDB []> completion of table and column names You can turn off this feature to get a quicker startup with -

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

MariaDB []> update user set password=password('新密码') where user='要更新密码的用户名'->,0 rows affected (0.00: 5 Changed: 0 Warnings: 0

4.刷新用户权限列表

MariaDB []> ,0 rows affected (0.00 sec)

5.退出MysqL登陆

MariaDB []>

6.重启MysqL或者mariadb服务

[root@localhost ~][root@localhost ~]

 

总结

以上是内存溢出为你收集整理的详解Centos7 修改mysql指定用户的密码全部内容,希望文章能够帮你解决详解Centos7 修改mysql指定用户的密码所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1050541.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存