温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

修改MySQL密码

发布时间:2020-02-29 04:01:01 来源:网络 阅读:310 作者:知止内明 栏目: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 ]
[root@izm5e5xf4ylewnqwanhz1mz 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

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI