ErrnoSSL received a record that exceeded the maximum permissible length

发布时间:2019/9/26 20:35:51 打印 字号:

可能443冲突,请查看之前是否配置过SSL证书,如果已经写入443端口,再次配置无需填写

方法1、修改server里面的 listen 443; 为 listen 443 default ssl; 保存,重启Nginx。完美解决!

方法2、可以查看一下tomcat的conf下server.xml文件的端口是否与其他的软件(skype)端口冲突。

    <Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"

               maxThreads="150" scheme="https" secure="true"

               clientAuth="false" sslProtocol="TLS" />