Oracle11g SSL和Oracle HTTP服务器(OHS)

Oracle11g SSL和Oracle HTTP服务器(OHS),oracle11g,Oracle11g,欢迎光临 适用于Linux x86的有centos 5.5、oracle 11g第1版、oracle Application Server 10g第3版(10.1.3.2.0) 通过owm和openssl创建钱包。。。终于准备好使用钱包了 更感兴趣的是在配置OHS中更改哪些设置以使其工作 在ssl.conf中更改路径以代替默认设置,设置下一个文件夹的路径,其中放置钱包 start opmnctl-在日志中不工作我看到错误 [Thu Dec 09 16:22:45 2010][错误]服务器virt

欢迎光临

适用于Linux x86的有centos 5.5、oracle 11g第1版、oracle Application Server 10g第3版(10.1.3.2.0)

通过owm和openssl创建钱包。。。终于准备好使用钱包了

更感兴趣的是在配置OHS中更改哪些设置以使其工作

在ssl.conf中更改路径以代替默认设置,设置下一个文件夹的路径,其中放置钱包 start opmnctl-在日志中不工作我看到错误

[Thu Dec 09 16:22:45 2010][错误]服务器virt11gr1:443:无法打开加密文件 钱包文件:/opt/app/oracle/product/11.1.0/ohs/ohs/conf/ssl.wlt/mywallet当opm n正在使用请将其启用为SSO钱包

在opmn.xml中还发现了一个字符串,该字符串指定了其中的路径-将不会启动。。。(
伙计们,告诉我哪里错了?

通过OWM打开您的钱包并设置自动登录复选框,如果我们通过ORAPKI使用,则:

# Create root wallet (for example, CA wallet)
./orapki wallet create -wallet ./root -auto_login_only

# Add a self-signed certificate (CA certificate) to the root wallet
./orapki wallet add -wallet ./root -dn 'CN=your-host.com,C=IN' -keysize 1024 -self_signed -validity 3650 -auto_login_only

# Export self-signed certificate from the wallet
./orapki wallet export -wallet ./root -dn 'CN=your-host.com,C=IN' -cert ./root/b64certificate.txt

# Create a user wallet (for example, a customer wallet)
./orapki wallet create -wallet ./user -auto_login_only

# Add a certificate request
./orapki wallet add -wallet ./user -dn 'CN=your-host.com,C=IN' -keysize 1024 -auto_login_only

# Export the certificate request
./orapki wallet export -wallet ./user -dn 'CN=your-host.com,C=IN' -request ./user/creq.txt

# Create a certificate (issued by CA)
./orapki cert create -wallet ./root -request ./user/creq.txt -cert ./user/cert.txt -validity 3650

# Add a trusted certificate (CA certificate) to the wallet
./orapki wallet add -wallet ./user -trusted_cert -cert ./root/b64certificate.txt -auto_login_only

# Add a user certificate
./orapki wallet add -wallet ./user -user_cert -cert ./user/cert.txt -auto_login_only

# Display contents of wallet
./orapki wallet display -wallet ./root