我正在尝试从Ubuntu 20.04服务器连接到mysql服务器的Azure数据库。直到两天前都很好。当我按enter键时,mysql警告显示,没有任何事情发生:
user@ubuntu2004:~$ mysql -uuser -ppassword -hmyserver.mysql.database.azure.com
mysql: [Warning] Using a password on the command line interface can be insecure.
MySQL Server版本Ubuntu Server: Ver 8.0.27-0ubuntu0.20.04.1 for Linux on x86_64 ((Ubuntu))
Azure MySQL Server Version: 8.0.15
但是,我可以从Mac连接到远程数据库。
MySQL的Mac版本:版本14.14 Distrib 5.7.32, for osx10.12 (x86_64)
有谁知道为什么它在Mac上工作而在ubuntu上不行吗?
我也遇到了同样的问题。
Azure Database for MySQL在8.0.27 MySQL客户端有一些问题
降级为8.0.19
# apt remove mysql-client-8.0 mysql-client-core-8.0
# apt install mysql-client-8.0=8.0.19* mysql-client-core-8.0=8.0.19*