Total Pageviews

Tuesday, October 25, 2022

oam 12c IDP initiated URL

https://servername/oamfed/idp/initiatesso?providerid=https://applicationurl.com

Thursday, October 13, 2022

oam 12c Download IDP metadata

1. login to oamconsole 2. Click on the Cinfuguration 3. go Down tp Settings section click on the View and select Federation. 4. Click Export SAML 2.0 Metadata

Friday, September 16, 2022

2nd OAM server in cluster unable to process the request OAM_JSESSIONID

SYMPTOMS Oracle Access Manager acting as the Service Provider (SP)WLS Managed Server Cluster with 2 OAM ServersOHS proxing mod_weblogic. There is no issue if only one WLS managed server is running When both WLS managed servers running OAM are started, the Federation flow fails. CAUSE Configuration of OHS server for mod_weblogic for OAM. The "WLCookieName" parameter for the OHS server configuration is missing or has the wrong value. In this specifc case the value was incorrect, OAMSESSIONID, where as the OAM application uses "OAM_JSESSIONID". The above fix the issue that two wls_oam1/wls_oam2 could not be started for federation to work.

Wednesday, September 14, 2022

JDK updated error jdk-8u341-linux-x64 :Caused by: java.net.URISyntaxException: Malformed IPv6 address at index 8

After updating JDK to new version jdk-8u341-linux-x64, IDM components are not coming up. It is a bug. here is how i fixed it error error:Caused by: java.net.URISyntaxException: Malformed IPv6 address at index 8 I have eadded below value to setDomainEnv.sh JAVA_PROPERTIES="-Dcom.sun.jndi.ldapURLParsing=legacy Also i have added above attribute to each Manager server Start stop section in Arguments section -Dcom.sun.jndi.ldapURLParsing=legacy

Wednesday, August 17, 2022

Insufficient free space in /tmp/orcl8124660.tmp to extract the installer

java error when installing any oracle OIG solution. when running below command $java -d64 -jar fmw_12.2.1.4.0_infrastructure.jar Error: com.oracle.cie.nextgen.launcher.LogUtils - Extracting to /tmp/orcl8128795323290514660.tmp. SEVERE [1] com.oracle.cie.nextgen.launcher.Launcher - Insufficient free space in /tmp/orcl290514660.tmp to extract the installer. Actual 107 MB. Required 1574 MB. SEVERE [1] com.oracle.cie.nextgen.launcher.Launcher - Insufficient free space in /tmp/orcl8514660.tmp to extract the installer. Solution: you dont have enought space on /tmp or tmp dont allow to execute any command at that location for security reason. the solution is provide different tmp location use below command to setup different location(make sure to have these directories) export _JAVA_OPTIONS="-Djava.io.tmpdir=/u01/orcle/tmp"

Thursday, August 11, 2022

how to change group gid in a linux

1. login to user account and run id command you will get users current uid, gid information of the account, suppose oracle gid was 1004 and you want to change it to 1040 2. login to root and run the following command to change the gid groupmod -g 1040 oracle 3. now login to the user account and run the id command again. you will see new gid of the user group

Wednesday, August 3, 2022

"WebGate Error Report" Message^The Access Server has returned a fatal error with no detailed information. ReqReq^POST /iam/access/binding/api/v10/oap HTTP/1.1

when configuring Webgate below error is coming in the logs "WebGate Error Report" Message^The Access Server has returned a fatal error with no detailed information. ReqReq^POST /iam/access/binding/api/v10/oap HTTP/1.1 Solution: webgate configuration is missing below properties in the OHS file modify webgate.conf add below lines in the file AuthType None require all granted make sure to copy again all the artifacts under the webgate cwallet.sso ObAccessClient.xml password.xml aaa_key.pem aaa_cert.pem now restart oam and ohs instance