gpt4 book ai didi

java - 无法使用 Netbeans 在 Tomcat 中配置 HTTPS

转载 作者:太空宇宙 更新时间:2023-11-04 12:54:43 24 4
gpt4 key购买 nike

我已按照以下步骤在 Netbeans 中的 tomcat 中配置了 HTTPS,但是当我尝试通过 HTTPS 访问该站点时,出现错误“安全连接失败”。请帮忙

1)生成 key

   keytool -genkey -alias Crunchify -keyalg RSA -keystore

2) 复制 key <tomcat installation dir>/Conf目录

3)修改server.xml文件

<Connector SSLEnabled="true" acceptCount="100" clientAuth="false" disableUploadTimeout="true" enableLookups="false" keystoreFile="conf/.keystore" keystorePass="password" maxThreads="25" port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol" scheme="https" secure="true" sslProtocol="TLS"/>

4) 打开项目web.xml并在<web-app>下添加以下标签

<security-constraint>
<display-name>Constraint2</display-name>
<web-resource-collection>
<web-resource-name>secure</web-resource-name>
<description/>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<description/>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>

最佳答案

嘿,我不确定这是否是一个问题,但类似的事情发生在我身上,问题是 tomcat 正在提供的 keystore 中寻找别名 tomcat,如果没有任何别名,则会失败。因此,请尝试使用别名 tomcat 的步骤 1

关于java - 无法使用 Netbeans 在 Tomcat 中配置 HTTPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35509956/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com