centos7 mysql 修改数据库密码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 mysql 修改数据库密码相关的知识,希望对你有一定的参考价值。

参考技术A 如:
[mysqld]
skip-grant-tables
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock

service mysql restart

mysql -uroot -p (直接点击回车,密码为空)

use mysql;

mysql> update user set password=password("*******") where user="*******"; #修改密码报错
ERROR 1054 (42S22): Unknown column 'password' in 'field list'
mysql> update mysql.user set authentication_string=password('*******') where user='*******'; #修改密码成功
Query OK, 1 row affected, 1 warning (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 1

mysql> flush privileges; #立即生效
Query OK, 0 rows affected (0.00 sec)

Stopping MySQL: [ OK ]
Starting MySQL: [ OK ]

以上是关于centos7 mysql 修改数据库密码的主要内容,如果未能解决你的问题,请参考以下文章

Centos7 修改mysql指定用户的密码

Linux Centos7 Mysql 忘记密码怎么找回密码

centos7.0环境安装好mysql之后,输入啥命令都无效,请问为啥?

centos7安装mysql5.7修改设置密码策略

centos7怎么改mysql密码

centos7中Mysql修改密码的几种方法