HTTPS訪問 weblogic下配置SSL

2022-03-29 17:11:42 字數 1535 閱讀 6279

進入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)

Android訪問https鏈結

引子 在android開發過程中我們常常需要訪問https鏈結,如果直接進行訪問有時候會丟擲異常,因為有些證書無法通過檢測,為了能夠訪問我們需要信任所有的證書,其實這是不安全的,但是一般我們都是訪問自己的 後台所以這麼做也可以。解決方法 為了信任證書我們需要實現兩個介面 1 hostnameveri...

Nginx開啟https訪問

進入你想建立證書和私鑰的目錄 cd home conf 建立伺服器私鑰 openssl genrsa des3 out server.key 1024 建立簽名請求的證書 csr openssl req new key server.key out server.csr 在載入ssl支援的nginx...

apache 配置https訪問

最近搞facebook小遊戲,h5通過ajax訪問伺服器端的時候發現 需要用https安全鏈結訪問,不然,直接拒絕。接下來寫一下怎麼配置https網域名稱 1 首先,你得有乙個https證書繫結的網域名稱 比如 www.test.com 這個東西很多地方都能申請啦,有免費的,有收費的,不多贅述。2 ...