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 -
To start and stop UCM server, use the below link - http://onlineappsdba.com/index.php/2010/05/12/start-stop-ucm-stellent-content-server-idcserver_start-idcadmin_start/
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
is it possible with windows 7 32 bit as well?
ReplyDelete