發表文章

目前顯示的是 12月, 2014的文章

oracle oid dip install

圖片
install DB install weblogic (jdk 1.6) install IAM 11.1.1.7 Failed Install Oracle Internet Directory with "/usr/bin/ld: crt1.o: No such file: No such file or directory" error (Doc ID 1521483.1) To Bottom glibc-devel (32 bit)  RPM missing on this system. run config.sh  Middleware Home Location : /u01/weblogic         Oracle Instance Location : /u01/weblogic/asinst_1         Oracle Instance : asinst_1         Domain Option : Create Domain         Domain Name : IDMDomain         Domain Home : /u01/weblogic/user_projects/domains/IDMDomain         Domain Host Name : localhost         Domain Port : 7001         Weblogic Console : http://localhost:7001/console         Weblogic User Name : weblogic         Automatic Port Detection : true       ...

oracle db install on OL6

# yum install oracle-rdbms-server-11gR2-preinstall #yum update #passwd oracle #vi /etc/security/limits.d/90-nproc.conf" # Change this  * soft nproc 1024  # To this  * - nproc 16384 chkconfig iptables off editing the "/etc/selinux/config" file SELINUX=permissive groupadd oinstall useradd -g oinstall oracle mkdir -p /u01 chown -R oracle:oinstall /u01 restart the server install DB alter system set open_cursors=500 scope=both; alter system set processes=500 scope=spfile; shutdown immediate; startup;

oracle oam install notes (HA)

圖片
This post covers installing 11.1.2.2(11gR2) Oracle Access Manager(OAM) cluster to achieve High Availability(HA)  System architect: oam11: admin server ,oam server 1 oam12: oam server 2 shared a database on oamdb oamc1.test.com : cluster virtual host (on oam11) all of them are Oracle linux vm. install DB at oamdb if change memory setting after install DB, need to change /etc/fstab  tmpfs                   /dev/shm                tmpfs   rw,size=6000m        0 0 check init.ora from processes = 150 open_cursors=300 to  processes = 500 open_cursors= 500 alter system set open_cursors=500 scope=both; alter system set processes=500 scope=spfile; shutdown immediate; startup; Create Schema in database using RCU 11.1.2.2 (use windows or linux version) Install JDK 1.6 on oam11 ,oam12 Install WebLogic 10.3.6 on...