Oracle EBS SSL 导出和导入

Oracle EBS SSL 导出导入
多应用环境下

You want to create a wallet containing your server cert and private key provided by your PKI administrator as a yourcert.p12 file. Let s assume the password for the private key is “mypassword”.

One way is to:
a/ convert this p12 to jks
keytool -v -importkeystore -srckeystore yourcert.p12 -srcstoretype PKCS12 -destkeystore yournewkeystore.jks -deststoretype JKS
You must use the same password for the new jks and the private key = “mypassword”

Import in this keystore, the intermediate and root certs for your server cert. This is required to create a valid wallet.
keytool -import -alias Root -keystore yournewkeystore.jks -trustcacerts -file root.cer
keytool -import -alias Intermediate -keystore yournewkeystore.jks -trustcacerts -file intermediate.cer

Validate all entries are there using keytool -list -keystore yournewkeystore.jks

b/ create an empty wallet
mw_home\oracle_common\bin\orapki wallet create -wallet ./ -pwd “mypassword”

c/ convert the jks to a wallet:
mw_home\oracle_common\bin\orapki wallet jks_to_pkcs12 -wallet ./ -pwd “mypassword” -keystore ./yournewkeystore.jks -jkspwd “mypassword”

Make sure the private key password and the wallet password match = “mypassword”

d/ open the newly created ewallet.p12 with Oracle wallet manager
And in wallet menu, tick “autologin”, then save. This creates cwallet.sso along side ewallet.p12

Your wallet is ready to be used by OHS!

相关:

  • bush3kd

自动Kill使用太多处理器资源的进程

#!/bin/bash

# March-13-2006
# CPUuse trigger script by Noel
#
# bash code to watch a running program’s CPU usage.
# if it’s above a set value, it will auto send an email.
# You will need to set a Cron job to run this script every xx minutes
#
# Set some needed things:
#
processToWatch=”convert” # in my case I need to watch convert
emailAddress=”root@host” # this is my main emailaddress
triggerValue=90 # if the CPU use is above 90% send an email. DO NOT USE a DOT or COMMA!
tempFileName=tmp-cpu # some name of the temp file for the ps, grep data Continue reading “自动Kill使用太多处理器资源的进程”

相关:

  • aboveArchives-
  • whmcs pptp
  • Directadmin varnish
  • directadmin 使用1 4
  • directadmin 内网
  • apache error AH01215
  • DirectAdmin 链接数据库
  • DirectAdmin插件
  • processtowatchArchives-
  • directadmin 配置varnish
Scroll to top