tomcat配置ssl证书IP访问(nginx配置https证书)
步骤1:创建密钥库
java keystore(jks)是安全证书的存储库。keytool是用于创建和管理密钥库的命令行实用程序。jdk和jre都可以使用此命令。我们只需要确保jdk或jre配置了path环境变量。
$ keytool -genkey -aliassvr1.tecadmin.net-keyalg rsa -keystore/etc/pki/keystore
输出:
enter keystore password:
re-enter new password:
what is your first and last name?
[unknown]:rahul kumarwhat is the name of your organizational unit?
[unknown]:webwhat is the name of your organization?
[unknown]:tecadmin inc.what is the name of your city or locality?
[unknown]:delhiwhat is the name of your state or province?
[unknown]:delhiwhat is the two-letter country code for this unit?
[unknown]:inis cn=rahul kumar, ou=web, o=tecadmin inc., l=delhi, st=delhi, c=in correct?
[no]:yesenter key password for(return if same as keystore password):
re-enter new password:
步骤2:获取ca签名的ssl[忽略自签名用户]
如果要使用自签名ssl证书,则无需执行此步骤。如果要从证书颁发机构购买有效的ssl,则需要先创建csr,使用以下命令执行此操作。
创建csr:
$ keytool -certreq -keyalg rsa -alias svr1.tecadmin.net -file svr1.csr -keystore /etc/pki/keystore
上面的命令将提示输入密钥库密码并生成csr文件。使用此csr并从任一证书颁发机构购买ssl证书。
ca颁发证书后,将拥有以下文件: root certificate,intermediate certificate 和issued certificate by ca。在此例中,文件名是
a. root.crt (root certificate)
b. intermediate.crt (intermediate certificate)
c. svr1.tecadmin.net.crt ( issued certificate by ca )
安装root certificate:
$ keytool -import -alias root -keystore/etc/pki/keystore-trustcacerts -fileroot.crt
安装intermediate certificate:
$ keytool -import -alias intermed -keystore/etc/pki/keystore-trustcacerts -fileintermediate.crt
安装issued certificate by ca
$ keytool -import -aliassvr1.tecadmin.net-keystore/etc/pki/keystore-trustcacerts -filesvr1.tecadmin.net.crt
步骤3:设置tomcat密钥库
现在,转到你的tomcat安装目录并在你喜欢的编辑器中编辑conf/server.xml文件,并按如下所示更新配置。如果需要,也可以将端口从8443更改为其他端口。
<connector port=”8443″ protocol=”http/1.1″
connectiontimeout=”20000″
redirectport=”8443″
sslenabled=”true”
scheme=”https”
secure=”true”
sslprotocol=”tls”
keystorefile=”/etc/pki/keystore”
keystorepass=”_password_” />
步骤4:重新启动tomcat
使用init脚本(如果有)重新启动tomcat服务,在这个例子中,我们使用的是shell脚本(startup.sh和shutdown.sh)来停止和启动tomcat。
$ ./bin/shutdown.sh
$ ./bin/startup.sh
步骤5:验证安装程序
因为我们已经完成了tomcat设置所需的所有配置。就可以在步骤2中的配置端口*问浏览器中的tomcat。