如何将下载的证书与tomcat关联

发布于 2024-12-10 08:18:50 字数 190 浏览 0 评论 0原文

我下载了一个免费的 ssl 证书,如何在 Apache Tomcat 下配置它?

我已发出以下命令来导入下载的文件

keytool -import -trustcacerts -alias root -file Thawte.crt -keystore keystore.jks

但这如何与 tomcat 服务器关联?

I have a downloaded a free ssl certificae and how can i make it to configure under Apache Tomcat ??

I have issued this below command to import the downloaded file

keytool -import -trustcacerts -alias root -file Thawte.crt -keystore keystore.jks

But how this will be associated with the tomcat server ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼泪淡了忧伤 2024-12-17 08:18:50

您必须将 server.xml 文件中的连接器描述更改为类似的内容,

<Connector 
       port="8443" maxThreads="200"
       scheme="https" secure="true" SSLEnabled="true"
       keystoreFile="${user.home}/.keystore" keystorePass="changeit"
       clientAuth="false" sslProtocol="TLS"/>
-->

请参阅SSL 文档 了解详细信息。

You have to change your Connector description in the server.xml file to something like

<Connector 
       port="8443" maxThreads="200"
       scheme="https" secure="true" SSLEnabled="true"
       keystoreFile="${user.home}/.keystore" keystorePass="changeit"
       clientAuth="false" sslProtocol="TLS"/>
-->

See the SSL documentation for details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文