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”

後續步驟

 

 

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