MySQL远程连接No appropriate protocol (protocol is disabled or cipher suites are inappropriate).
时间: 2023-09-17 10:11:51 浏览: 179
MySQL远程连接不上的解决方法
5星 · 资源好评率100%
MySQL远程连接出现"No appropriate protocol (protocol is disabled or cipher suites are inappropriate)"的错误,可能是由于使用了高版本的MySQL连接驱动,而未指明是否进行SSL连接所致。解决这个问题的方法是禁止SSL连接(useSSL=false)。
这个错误一般在使用Idea连接MySQL时出现。在Idea中,如果导入的是高版本的MySQL连接驱动,那么在进行连接时就需要指明是否使用SSL连接。没有正确指明是否使用SSL连接会导致该错误的发生。为了解决这个问题,可以在连接URL中添加参数"useSSL=false"来禁止SSL连接。
通过这个方法,就可以解决MySQL远程连接的"No appropriate protocol (protocol is disabled or cipher suites are inappropriate)"错误。
阅读全文