TOMCAT 制作自签名 SSL(https) 证书

来源:互联网 发布:淘宝不满意怎么退货 编辑:程序博客网 时间:2024/05/01 17:09


JAVA JDK版本自带了一个创建签名的工具keytool,利用它我们可以自己生成网站的ssl证书

基本步骤:

  1. 使用 java 创建一个 keystore 文件
  2. 配置 Tomcat 以使用该 keystore 文件
  3. 测试
  4. 配置应用以便使用 SSL ,例如 https://localhost:8443/yourApp

1. 创建 keystore 文件

执行 keytool -genkey -alias tomcat -keyalg RSA 结果如下

01loiane:bin loiane$ keytool -genkey -alias tomcat -keyalg RSA
02Enter keystore password:  password
03Re-enter new password: password
04What is your first and last name?
05  [Unknown]:  Loiane Groner
06What is the name of your organizational unit?
07  [Unknown]:  home
08What is the name of your organization?
09  [Unknown]:  home
10What is the name of your City or Locality?
11  [Unknown]:  Sao Paulo
12What is the name of your State or Province?
13  [Unknown]:  SP
14What is the two-letter country code for this unit?
15  [Unknown]:  BR
16Is CN=Loiane Groner, OU=home, O=home, L=Sao Paulo, ST=SP, C=BR correct?
17  [no]:  yes
18  
19Enter key password for
20    (RETURN if same as keystore password):  password
21Re-enter new password: password

这样就在用户的主目录下创建了一个 .keystore 文件

2. 配置 Tomcat 以使用 keystore 文件

打开 server.xml 找到下面被注释的这段

1<!--
2<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
3    maxThreads="150" scheme="https" secure="true"
4    clientAuth="false" sslProtocol="TLS" />
5-->

干掉注释,并将内容改为

1Connector SSLEnabled="true" acceptCount="100" clientAuth="false"
2    disableUploadTimeout="true" enableLookups="false" maxThreads="25"
3    port="8443" keystoreFile="/Users/loiane/.keystore" keystorePass="password"
4    protocol="org.apache.coyote.http11.Http11NioProtocol" scheme="https"
5    secure="true" sslProtocol="TLS" />

3. 测试

启动 Tomcat 并访问 https://localhost:8443. 你将看到 Tomcat 默认的首页。

需要注意的是,如果你访问默认的 8080 端口,还是有效的。

4. 配置应用使用 SSL

打开应用的 web.xml 文件,增加配置如下:

1<security-constraint>
2    <web-resource-collection>
3        <web-resource-name>securedapp</web-resource-name>
4        <url-pattern>/*</url-pattern>
5    </web-resource-collection>
6    <user-data-constraint>
7        <transport-guarantee>CONFIDENTIAL</transport-guarantee>
8    </user-data-constraint>
9</security-constraint>

将 URL 映射设为 /* ,这样你的整个应用都要求是 HTTPS 访问,而 transport-guarantee 标签设置为 CONFIDENTIAL 以便使应用支持 SSL。

如果你希望关闭 SSL ,只需要将 CONFIDENTIAL 改为 NONE 即可。

0 0
原创粉丝点击