修改MySQL密码

Posted

tags:

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

修改配置:

vim /etc/my.cnf
[mysqld]
basedir=/home/mysql
datadir=/home/mysql/data

port = 3306
user = mysql
character_set_server=utf8

skip-grant-tables

[client]
default-character-set=utf8

service mysqld start
Starting MySQL. [ OK ]
[[email protected] bin]# mysql -uroot -p mysql
Enter password:
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MariaDB monitor. Commands end with ; or g.
Your MySQL connection id is 3
Server version: 5.7.18 MySQL Community Server (GPL)

Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.

Type ‘help;‘ or ‘h‘ for help. Type ‘c‘ to clear the current input statement.

MySQL [mysql]>
MySQL [mysql]>
MySQL [mysql]>
MySQL [mysql]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
+--------------------+
4 rows in set (0.01 sec)

MySQL [mysql]> update user set password=password("mysql") where user=‘root‘;
ERROR 1054 (42S22): Unknown column ‘password‘ in ‘field list‘
MySQL [mysql]> update mysql.user set authentication_string=password(‘root‘) where user=‘root‘ ;
Query OK, 1 row affected, 1 warning (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 1

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

mysql密码修改问题

怎么修改mysql 用户的密码

mysql修改用户加密的密码忘了怎么办

MySQL忘记密码怎么修改密码

如何修改连接mysql的用户名和密码

MySQL密码怎么不能修改