Modify ssl.conf

classic Classic list List threaded Threaded
5 messages Options
big
Reply | Threaded
Open this post in threaded view
|

Modify ssl.conf

big
Hi,

On R12.2 we want to modify ssl.conf file. Following document 1367293.1 we should:
1. Login to Oracle Fusion Middleware Control Console (for example, http://<hostname>.<domain>:<AdminServer Port>/em).
2. Select Web Tier Target under EBS Domain.
3. Select Administration > Advanced Configuration.
4. Select ssl.conf file for edit.

Does anyone know where this ssl.conf file physically stored?

Thanks
Reply | Threaded
Open this post in threaded view
|

Re: Modify ssl.conf

ErmanArslansOracleBlog
Administrator
${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/ssl.conf

replace the environment variable accordingly.. (according to your env)
big
Reply | Threaded
Open this post in threaded view
|

Re: Modify ssl.conf

big
Thank you Erman.

${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/ssl.conf
 But there are differnet components, aren't? (Apache, FMW, and...)

Am I wrong?

If not:
Then which one is accessed by:
 1. Login to Oracle Fusion Middleware Control Console (for example, http://<hostname>.<domain>:<AdminServer Port>/em).
2. Select Web Tier Target under EBS Domain.

Best regards.
Reply | Threaded
Open this post in threaded view
|

Re: Modify ssl.conf

ErmanArslansOracleBlog
Administrator
Yes there are more than one component.
Normally when you use "find" command to find the ssl.conf in an EBS 12.2, you get an output simlar to the following;

find . -name ssl.conf
./fs2/EBSapps/10.1.2/Apache/Apache/conf/ssl.conf
./fs2/inst/apps/PROD_ebstestdbb/admin/out/09301510/ssl.conf
./fs2/FMW_Home/webtier/ohs/conf/ssl.conf
./fs2/FMW_Home/webtier/instances/EBS_web_PROD_OHS1/config/OHS/EBS_web_PROD/backup/ssl.conf
./fs2/FMW_Home/webtier/instances/EBS_web_PROD_OHS1/config/OHS/EBS_web_PROD/ssl.conf
./fs1/EBSapps/10.1.2/Apache/Apache/conf/ssl.conf
./fs1/inst/apps/PROD_ebstestdbb/admin/out/09301646/ssl.conf
./fs1/FMW_Home/webtier/ohs/conf/ssl.conf
./fs1/FMW_Home/webtier/instances/EBS_web_PROD_OHS1/config/OHS/EBS_web_PROD/backup/ssl.conf
./fs1/FMW_Home/webtier/instances/EBS_web_PROD_OHS1/config/OHS/EBS_web_PROD/ssl.conf

--------------------
So, the one you are looking for is the one under the following directories -> /fs1/FMW_Home/webtier/instances/EBS_web_PROD_OHS1/config/OHS/EBS_web_PROD
and
/fs2/FMW_Home/webtier/instances/EBS_web_PROD_OHS1/config/OHS/EBS_web_PROD
big
Reply | Threaded
Open this post in threaded view
|

Re: Modify ssl.conf

big
Thanks Erman.

Regards.