Follow this blog to install ps3 from the wizard
Note: before you install make sure to set
export JAVA_HOME=/usr/java
fqdn host firs in /etc/hosts
pkg install pkg:/compatibility/ucb
http://www.oraworld.co.uk/11gr2ps3-oracle-identity-management-11g-release-2-ps3-11-1-2-3-0/
ALTER SYSTEM SET processes = 3000 SCOPE = SPFILE;
ALTER SYSTEM SET open_cursors = 1600 SCOPE = SPFILE;
ALTER SYSTEM SET session_cached_cursors = 500 SCOPE = SPFILE;
ALTER SYSTEM SET session_max_open_files = 50 SCOPE = SPFILE;
ALTER SYSTEM SET sessions = 2000 SCOPE = SPFILE;
cd $ORACLE_HOME/rdbms/admin
sqlplus / as sysdba
SQL> @ xaview.sql
Note: Steps below didnt work for PS3 – first install PS2 and use the link below steps to upgarde to PS3
http://www.iamidm.com/2015/05/upgrade-of-oim-11gr2ps2-to-11gr2ps3.html
Before running RCU
OIM RCU Creation – XATRANS Views are not installed on this Database
http://www.oraworld.co.uk/oim-rcu-creation-xatrans-views-are-not-installed-on-this-database/
http://www.oratraining.com/blog/2013/11/run-repository-creation-utility-rcu-for-oracle-identity-management-components-2/
Update spfile with cursors to 1000, process to 500, etc.. as in PS2 doc
To update sga size
alter system set sga_max_size=15G scope=spfile;
alter system set sga_target=15G scope=spfile;
- SQL> alter system set processes=5000 scope=spfile;
- SQL> alter system set sessions=2000 scope=spfile;
- SQL> alter system set open_cursors=1000 scope=spfile;
restart db to take effect and verify
select count(*) from v$process;
Start the listener
lsnrctl start
Set the open files on DB
ulimit -n 6500
Run RCU (only windows and linux support) – use DEV as the schmea name
To patch weblogic
./bsu.sh -install -patch_download_dir=$MW_HOME/utils/bsu/cache_dir -patchlist=YUIS -prod_dir=$MW_HOME/wlserver_10.3
To Create the IDM
cd oracle_common/common/bin/
./wlst.sh /u01/oracle/Oracle/Middleware/Oracle_IDM1/common/tools/configureSecurityStore.py -d /u01/oracle/Oracle/Middleware/user_projects/domains/IDMDomain -c IAM -p password -m create
Doc Location
https://docs.oracle.com/cd/E52734_01/core/INOAM/toc.htm
DB Tip
To get the DB
cd /u01/app/oracle/product/12.1.0/dbhome_1/dbs
strings SDI.ora > newfile
SQL startup pfile='C:orapfileinit.ora';
SQL create spfile from pfile='C:orapfileinit.ora'
Refrence to
http://devtech101.com/index.php/how-to-install-oracle-identity-management-11gr2-ps2/