Sql客户端抛出错误1045但我可以通过命令行进入?

时间:2014-08-23 00:29:50

标签: mysql sql linux ubuntu

我有一个Linux VPS,我可以使用命令行连接到正常。

root@vps27625:~# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4604
Server version: 5.5.38-0ubuntu0.14.04.1 (Ubuntu)

Copyright (c) 2000, 2014, 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>

但如果我使用任何sql客户端,它会向用户root抛出错误1045访问被拒绝(使用密码:YES)

发生这种情况的可能原因是什么?

2 个答案:

答案 0 :(得分:1)

您似乎远程使用root。默认情况下,大多数mysql安装都拒绝了。所以请改用其他用户。

实际上使用root帐户进行远程登录并不是一种好的做法。

答案 1 :(得分:0)

禁用mysql服务器上root的远程登录。您可以使用

进行设置

<强>&GT; mysql_secure_installation

命令启用或禁用它。