当使用localhost
的时候能够连接
ubuntu@VM-25-23-ubuntu:/home/xxx/.qqbot-tmp$ mysql -u seafile -p -h localhost
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 14
Server version: 5.7.20-0ubuntu0.16.04.1 (Ubuntu)
Copyright (c) 2000, 2017, 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.
当使用127.0.0.1
时,却这样
ubuntu@VM-25-23-ubuntu:/home/xxx/.qqbot-tmp$ mysql -u seafile -p -h 127.0.0.1
Enter password:
ERROR 1045 (28000): Access denied for user 'seafile'@'10.186.25.23' (using password: YES)
这种问题怎么解决 ?
1
cnta 2017-12-28 21:04:58 +08:00
0.0.0.0 试试?
|
2
xiaoz 2017-12-28 21:22:36 +08:00
此问题和“ TX 云”无关,请检查你数据库用户的连接权限,权限有:localhost/127.0.0.1/%
|
3
Loyalsoldier 2017-12-28 21:28:01 +08:00
2 楼正解。
自建用户需要授权 127.0.0.1 和 localhost,如果你总是换着用的话…… |