当前位置:Gxlcms > mysql > 详解Centos7修改mysql指定用户的密码

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

时间:2021-07-01 10:21:17 帮助过:173人阅读

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

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

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

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

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语句来更新指定用户的密码

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.刷新用户权限列表

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

5.退出mysql登陆

MariaDB [mysql]> quit
Bye

6.重启mysql或者mariadb服务

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

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

您可能感兴趣的文章:

  • Centos7 下mysql重新启动MariaDB篇
  • Centos7.3下mysql5.7.18安装并修改初始密码的方法
  • Linux centos7环境下MySQL安装教程
  • Centos7下无法远程连接mysql数据库的原因与解决
  • 64位CentOs7源码安装mysql-5.6.35过程分享
  • CentOs7.x安装Mysql的详细教程
  • mysql 5.7.17 安装配置方法图文教程(CentOS7)
  • 阿里云CentOS7搭建Apache+PHP+MySQL环境
  • Centos7使用yum安装Mysql5.7.19的详细步骤
  • centos7.4系统中yum源安装mysql 5.6

人气教程排行