mysql
初始化的root密码都是为空的
root@ubuntu:~# mysql -u root -p
Enter password: -----------------------敲入回车
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.1.55-log Source distribution
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
---------------开始修改root用户密码---------------------
mysql> use mysql
mysql> insert into user(Host,User,Password) values('%','root',PASSWORD('root'));
Query OK, 1 row affected, 3 warnings (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
查看表中显示信息

修改完成
本文介绍如何在MySQL中为root用户设置初始密码,并提供详细的步骤说明。通过插入新记录到user表并更新密码来实现。

1万+

被折叠的 条评论
为什么被折叠?



