MySQL安装Client8版本之后报error:14077102:SSL routines:SSL23_GET_SERVER_HELLO:unsupported protocol
一、错误日志
mysql: [Warning] Using a password on the command line interface can be insecure. ERROR 2026 (HY000): SSL connection error: error:14077102:SSL routines:SSL23_GET_SERVER_HELLO:unsupported protocol
二、解决
使用--ssl-mode=DISABLED参数即可
mysql -h xxx.xxx.xxx.xxx -P 3306 -u root -p'密码' --ssl-mode=DISABLED