Saturday, May 21, 2011

Installing Oracle UCM 10gR3 in Windows 7

Good installation steps to follow -

Make sure that you have sufficient tablespace and user defined in sql database.

 create tablespace content_system datafile 'd:/UCM/tablespace/stellent_temp.dbf' size 500M;  
 create temporary tablespace stellent_temp tempfile  'd:/UCM/tablespace/stellent_temp.dbf' size 500M;  
 create tablespace stellent_system  
 datafile 'd:/UCM/tablespace/stellent_data.dbf'  
 size 500m  
 minimum extent 1M  
 default storage ( initial 1m  
 next 1m  
 pctincrease 0);  
 create USER stellent_admin IDENTIFIED by stellent_admin temporary tablespace stellent_temp  default tablespace stellent_system  quota unlimited on stellent_system;  


If you want to install additional components, you can follow below link -



Good tutorial about ADF and UCM integration using RIDC - http://andrejusb.blogspot.com/2010/12/oracle-ucm-11g-remote-intradoc-client.html

Make sure that httpd.conf in apache has the following:-

LoadModule IdcApacheAuth D:/UCM/ucm-server/shared/os/win32/lib/IdcApache22Auth.dll
IdcUserDB idc "D:/UCM/ucm-server/data/users/userdb.txt"
Alias /cs"D:/UCM/ucm-server/weblayout"
<Location /cs>
Order allow,deny
Allow from all
DirectoryIndex portal.htm
IdcSecurity idc
</Location>
<Location "/">
Order allow,deny
Allow from all
IdcSecurity idc
</Location>

Here 'cs' is my web root value.

Also make sure that content server is up and running by checking status in services


1 comment: