filenet安装前置工作-总结安装一天的成果

今天测试环境的filenet不好用了,需要重新安装。连查资料带参考安装部署手册,整整搞了一天,总算是安装成功了。分享一下安装过程,日后在有需要可以参考。

1.1部署环境

windows server 2003 32位

Was6.1

Jdk1.5

Oracle 10g

1.2安装 Microsoft .net FreamWork2.0(32位)

注意:如果有提示安装installer3.0,则需要安装nstaller3.0。

1.双击“_NetFx20SP2_x86.exe”安装程序

2.单击“下一步”

3.选择“我接受许可协议中的条款”。单击“下一步”

4.单击完成、完成Microsoft .net FreamWork2.0(32位)的安装

1.3安装 Microsoft WSE3.0

1.双击Microsoft WSE3.0安装程序,单击“next”

2.选择“I accept the terms in the license agreement”、单击“next”

3.选择安装类型为“Runtime” 。单击“next”

4.单击“Install”

5.单击“Finish”完成安装

2.ad添加用户

创建用户administrator 密码 password 安全组PEAdministrators

3.创建数据库

--登录到Oracle
sqlplus sys@orcl as sysdba
123456
--创建CE数据库
create tablespace GCD datafile 'gcd_01.dat' size 100M autoextend on next 100M maxsize 1024M;
create temporary tablespace GCDTEMP datafile 'gcdtemp_01.dat' size 200M ;
--创建用户
create user GCDUSER IDENTIFIED by password default tablespace GCD temporary tablespace GCDTEMP;
gran connect,resource,create session,create table to GCDUSER;
gran select on sys.dba_pending_transactions to GCDUSER;
gran select on sys.pending_trans$ to GCDUSER;
gran select on sys.dba_2pc_pending to GCDUSER;
gran select on sys.dbms_system to GCDUSER;

--创建PE数据库
create tablespace vwdata_ts datafile 'vwdata_ts_02.dat' size 200M autoextend on next 100M maxsize 1024M;
create tempprary tablespace vwtemp_ts datafile 'vwtemp_ts_02.dat' size 400M ;
create tablespace vwindex_ts datafile 'vwindex_ts_02.dat' size 200M autoextend on next 100M maxsize 1024M;


-- 以下sql不执行,重装时删除旧数据库和用户
/*
drop tablespace GCD including contents and datafile;
drop tablespace GCDTEMP including contents and datafile;
select user,temporary_tablespace from dba_users;
drop user GCDUSER cascade;

*/

4.was6.1安装及配置

was6.1安装简略;

配置如下:

安全性 -> 安全管理,应用程序和基础结构 -> 可用的域定义  -> 独立LDAP注册表  ->配置为当前 -> 配置。

测试连接无问题,保存并重启was。

创建c:\jars 文件夹,并将ojdbc14.jar放入

使用administrator登录WebSphere 管理控制台

配置WebSphere参数

登录WAS admin console→Environment→WebSphere Variables

选择范围:Node

创建或修改参数"ORACLE_JDBC_DRIVER_PATH",value:"c:\jars"

→WAS admin console→Servers→Application sercers→server1→Java and Process Management

→Process Definition→Jaca Virtual Machine

赋值“Initial Heap Size” 为 “512”

赋值“Maximum Heap Size” 为 “1024”

后续步骤

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章