HTTPS訪問:weblogic下配置SSL

qingyezhu發表於2014-08-12

進入Weblogic安裝路徑下的JDK安裝目錄bin檔案下,通過keytool工具生成金鑰對(標識金鑰庫)

 

 

輸入命令,生成金鑰

keytool.exe -genkey -v -alias weblogictest -keyalg RSA -keysize 512 -keypass xiejin -dname "CN=localhost,OU=北京檔案櫃系統,O=北京統計局,L=北京市,ST=北京,C=CN" -validity 365 -keystore E:/weblogic_identity.jks -storepass xiejin

 

輸入命令,生成證書籤發請求*.pem檔案(私有金鑰)

keytool.exe -certreq -v -alias weblogictest -file E:/cert_request.pem -keypass xiejin -storepass xiejin -keystore E:/weblogic_identity.jks

 

或者將上述的兩條命令放在一個Bat檔案中,直接點選Bat檔案,即可。

 

啟動weblogic,進入管理控制檯,配置金鑰庫資訊:

 

首先進入配置(Configuration)----à金鑰庫(Keystores)

 

配置資訊如下:

 

金鑰庫(Keystores):定製標識和定製信任(Custom Identity and Custom Trust)

 

定製標識金鑰庫(Custom Identity Keystore):weblogic_identity.jks

定製標識金鑰庫型別(Custom Identity Keystore Type):jks

定製標識金鑰庫密碼短語(Custom Identity Keystore Passphrase):xiejin

確認定製標識金鑰庫密碼短語(Confirm Custom Identity Keystore Passphrase):xiejin

 

定製信任金鑰庫(Custom Trust Keystore):weblogic_identity.jks

定製信任金鑰庫型別(Custom Trust Keystore Type):jks

定製信任金鑰庫密碼短語(Custom Trust Keystore Passphrase):xiejin

確認定製信任金鑰庫密碼短語(Confirm Custom Trust Keystore Passphrase):xiejin

 

點選儲存。

 

接著點選右邊的SSL選項卡:

填寫資訊如下:

標識和信任位置(Identity and Trust Locations):金鑰庫(Keystores)

私有金鑰別名(Private Key Alias):weblogictest

私有金鑰密碼短語(Private Key Passphrase):xiejin

確認私有金鑰密碼短語(Confirm Private Key Passphrase):xiejin

點選儲存。

 

最後點選一般資訊選項卡:

 

勾選已啟用SSL監聽埠(SSL Listen Port Enabled),並設定SSL監聽埠(SSL Listen Port)

 

輸入地址:https://localhost:port/beacon

相關文章