java.io.FileNotFoundException: /root/.keystore (No such file or directory)
解决方法:
报错内容如图片,是因为tomcat443端口请求没有证书的问题,可以注释tomcat目录下的conf文件夹下的server.xml文件以下的配置,即可解决
<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" />