mysql设置root密码的问题?

发布于 2022-09-11 15:08:27 字数 717 浏览 10 评论 0

背景:

使用root权限登录服务器,安装mysql,使用mysqladmin给用户名为"root"的user设置密码为xxx

问题:

  • 在原root账号登录服务器的情况下,然后直接使用mysql命令不用输密码即可登录mysql;

  • 使用用户名为test的私钥登录服务器,有以下几种情况:

   1. 直接使用mysql命令提示Access denied for user 'test'@'localhost
   2. 而使用mysql -uroot -pxxx则提示Access denied for user 'root'@'localhost
   3. 另外,使用sudo mysql则成功且不需要输mysql密码

期待结果:

mysql只有一个用户User="root"的情况下,任何账号登录服务器,均需要输入密码才能进入mysql,且不要加sudo,即类似mysql -uroot -pxxx这样,可以吗?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

江南烟雨〆相思醉 2022-09-18 15:08:28

1.root用户登录OS:

mysql> select user,host from mysql.user;
userhost
rootlocalhost

1 row in set (0.00 sec)

mysql> exit
Bye
[root@mysql3 ~]# mysql
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 20
Server version: 5.6.41-log MySQL Community Server (GPL)

Copyright (c) 2000, 2018, 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> select user();
user()
root@localhost

1 row in set (0.00 sec)

mysql> exit
Bye

2.sam用户登录OS:
[sam@mysql3 ~]$ mysql
ERROR 1045 (28000): Access denied for user 'sam'@'localhost' (using password: YES)
[sam@mysql3 ~]$ mysql -uroot -psam123
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 22
Server version: 5.6.41-log MySQL Community Server (GPL)

Copyright (c) 2000, 2018, 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> select user();
user()
root@localhost

1 row in set (0.00 sec)

你要的是这个?

信愁 2022-09-18 15:08:27

@Yujiaao
图片描述

图片描述

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文