Oracle HTTP Server (OHS) 11g and 12c : Configure SSL
This article describes how to configure SSL for Oracle HTTP Server (OHS) 11g and 12c.
oracle 12cconfigurationintermediate
by OracleDba
11 views
This article describes how to configure SSL for Oracle HTTP Server (OHS) 11g and 12c.
12345678910111213141516
mkdir -p ~/wallet
cd ~/wallet
$MW_HOME/oracle_common/bin/orapki wallet create -wallet ./ -pwd WalletPasswd123 -auto_login
$MW_HOME/oracle_common/bin/orapki wallet add -wallet ./ -pwd WalletPasswd123 \
-dn "CN=`hostname`, OU=Example Department, O=Example Company, L=Birmingham, ST=West Midlands, C=GB" \
-keysize 1024 -self_signed -validity 3650
mkdir -p ~/wallet
cd ~/wallet
$MW_HOME/oracle_common/bin/orapki wallet create -wallet ./ -pwd WalletPasswd123 -auto_login
$MW_HOME/oracle_common/bin/orapki wallet jks_to_pkcs12 -wallet ./ -pwd WalletPasswd123 \
-keystore ~/keystore/identity.jks -jkspwd KeystorePassword123123456789
SSLProtocol -All +TLSv1
SSLWallet "/home/oracle/wallet"
SSLCipherSuite HIGH:!aNULL:!MD5:!3DES:!DES:!DHE:!RSA
$INSTANCE_HOME/httpd.conf
$INSTANCE_HOME/admin.conf
$DOMAIN_HOME/bin/stopComponent.sh ohs1
$DOMAIN_HOME/bin/startComponent.sh ohs1Please to add comments
No comments yet. Be the first to comment!