Skip to content

Trust Anchor Installation for Oracle wallets using orapki⚓︎


Linux 7⚓︎

Bash
1
2
3
4
5
6
7
8
# add the Root CA certificate as a trusted cert in to the wallet
orapki wallet add -wallet ./trust_wallet/ -trusted_cert -cert ROOT.cer -pwd OurPassword

# add the Intermediate CA certificate as a trusted cert in to the wallet
orapki wallet add -wallet ./trust_wallet/ -trusted_cert -cert INTERMEDIATE.cer -pwd OurPassword

# display the wallet and confirm you see 2 "Subject" lines. The Root, and Intermediate should be listed
orapki wallet display -wallet ./trust_wallet/

Solaris 10⚓︎

Bash
1
2
3
4
5
6
# Copy the pem based certificates for both your Root and Intermediate to the wallet directory
orapki wallet add -wallet ewallet.p12 -trusted_cert -cert ROOT.pem
orapki wallet add -wallet ewallet.p12 -trusted_cert -cert INTERMEDIATE.pem

# Verify your PKI certs are now listed in the wallet
orapki cert display -cert ewallet.p12 -summary