请问你是需要申请SSL证书,还是想问SSL证书的配置问题?
1、申请SSL证书,你可要到沃通CA申请付费SSL或者免费SSL;
2、weblogic环境SSL证书配置方法--BEA Weblogic 9.0
请按照以下步骤在BEA Weblogin 9.0上安装SSL证书:
A:一旦您申请的SSL证书成功颁发,您会收到一个邮件通知您取回证书,点击邮件中的取回证书链接,就可以得到您的证书文件。此文件是一个打包文件,包含了您申请的证书类型的证书链文件、公钥证书。或 直接给您的是包含证书公钥和私钥的打包文件,有支持所有服务器类型的3种格式证书文件和各级根证书文件。
B. 导入证书 Import the certificate
请使用以下命令导入交叉根证书到您的Keystore中:
Use the keytool command to import the root certificates as follows:
keytool -import -trustcacerts -alias root -file ca1_xs.cer -keystore [keystore_name]
请使用以下命令导入WoSign中级根证书到您的Keystore中:
Use the same process for the WoSign certificate using the keytool command:
keytool -import -trustcacerts -alias INTER -file intermediate.cer -keystore [keystore_name]
请使用以下命令导入您的证书到您的Keystore中,其中:
Use
the same process for the site certificate using the keytool command, if
you are using an alias then please include the alias command in the
string:
keytool -import -trustcacerts -alias [keyEntry_name] -file mycert.crt -keystore [keystore_name]
C. 配置WebLogic Server Configure the Identity and Trust keystores for WebLogic Server
1. 展开Web服务器节点 Expand the Servers node.
2. 选择您需要配置的Web服务器名称 Select the name of the server for which you want to configure keystores.
3.
选中“Keystores and SSL tab”按钮设置此域名的Keystore信息 Select the button
'Keystores and SSL tab' to configure the keystore for the domain.
4.
缺省情况下,WebLogin有一个测试用的SSL证书用于测试,请点击右上面的“Change”链接,会显示可选的证书下拉菜单。 By
default, WebLogic ships with demo certificates for testing purposes.
Click the 'Change' link in the upper-right portion of the configuration
items. This will display the drop-down list of options for
configuration.
5. 选中 Choose 'Custom Identity and Java Standard Trust' from the list.
6. 指定以下Keystore信息 Specify the identity keystore information.
[Custom identity]
Keystore文件保存完整路径:
Custom Identity key store file Name :
c:\where\my\keystore\is\located\mykeystore.keystore (The fully qualified
path to your keystore)
Keystore类型:Custom Identity key Store Type : jks (Generally, this attribute is jks)
Keystore管理密码(您在创建时设置的):Custom
Identity key Store Pass Phrase : keystore_password (The password
defined when creating the keystore)
确认Keystore管理密码(您在创建时设置的):Confirm
Customer Identity key Store Pass Phrase : Keystore_password (The
password defined when creating the keystore)
[Java Standard Trust]
Java标准Keystore管理密码:Java
standard Trust Key Store Pass Phrase : changeit (unless your system
admin changed it the password for the cacerts keystore is "changeit")
确认Java标准Keystore管理密码:
Confirm Java Standard Trust Key Store Pass Phrase : changeit (unless
your system admin changed it the password for the cacerts keystore is
"changeit")
点击 Click 'continue'
查看SSL证书私钥设置信息 [Review SSL Private Key Settings]
私钥别名
Private key Alias : your_alias_name (the alias is the friendly name for
your keyEntry (private key), if you do not remember it please run the
following command on your keystore to confirm the alias:
如果您忘了私钥别名,请使用以下命令验证别名:
keytool -list -keystore [your_alias_name] -v
私钥密码
Passphrase : keyEntry_password (specify the keyEntry (private key)
password. The password for the private key may differ from the one for
the keystore)
确认私钥密码 Confirm Passphrase : keyEntry_password
(specify the keyEntry (private key) password. The password for the
private key may differ from the one for the keystore)
7. 点击 Click 'continue'
8. 点击 Click Finish.
9. 重启 Reboot WebLogic Server.
更多版本,你可以到沃通SSL查看更多安装方法。