【SSL】weblogic 12c自帶預設證書庫密碼
阿新 • • 發佈:2019-02-16
身份認證證書庫(DemoIdentity.jks)
Keystore password(證書庫密碼) :DemoIdentityKeyStorePassPhrase
localhost域名對應的證書
別名:demoidentity
域名:localhost(一般情況下是localhost,redhat7下是:localhost.localdomain,檢視方法見後面內容)
Private key password(私鑰庫密碼) :DemoIdentityPassPhrase
信任證書庫(DemoTrust.jks)
Trust store password(證書庫密碼) : DemoTrustKeyStorePassPhrase
證書操作
檢視證書列表
keytool -list -keystore DemoIdentity.jks -storetype JKS -storepass DemoIdentityKeyStorePassPhrase
keytool -list -keystore DemoTrust.jks -storetype JKS -storepass DemoTrustKeyStorePassPhrase
檢視別名為demoidentity的證書對應的域名
keytool -list -keystore DemoIdentity.jks -storetype JKS -storepass DemoIdentityKeyStorePassPhrase -alias demoidentity -v
在反饋資訊中找:所有者資訊 -> CN的內容。