如何将下载的证书与tomcat关联
我下载了一个免费的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将
server.xml
文件中的连接器描述更改为类似的内容,请参阅SSL 文档 了解详细信息。
You have to change your Connector description in the
server.xml
file to something likeSee the SSL documentation for details.