安裝了幾次老是啟動有問題:
The service did not start due to the following error: Unable to connect to the repository isaservice on database jamax.. Check the log for more information.
node01
或者
The service did not start due to the following error: DataBase error: [IBM][CLI Driver][LU62SPM] SQL30070N 不支持 "Unsupported function for SPMDB connect" 命令。 SQLSTATE=58014 sqlstate = 40003 Database driver error... Function Name : Execute SQL Stmt : VALUES CURRENT TIMESTAMP DB2 Fatal Error.. Check the log for more information.
node01 node01
日志:
DOM_10079?Unable?to?start?service?[isaservice]?on?any?node?specified?for?the?service.
DOM_10055?Unable?to?start?service?process?[isaservice]?on?node?[node01].
SPC_10013?Process?for?service?isaservice?failed?to?start.原來懷疑是安裝的問題,后來才發現是因為元數據庫和源數據的連接錯誤地設置成同一個數據庫,造成元數據庫損壞造成的。出錯后試了幾種辦法都不行,只能重新再裝,原來的元數據就沒法用了,這是一個很嚴重的后果!正確的做法應該如下(本機):
1. 設置元數據倉庫:

Database URL 格式是HOST_NAME:PORT_NAME,如果用的是默認端口那么只需要填HOST_NAME就可以了。
Database user ID: 填一個有管理員權限的用戶(sys好像不行,可以用system)
Database service name: 填全局數據庫名, 對應下面的SERVICE_NAME
file:tnsnames.ora
INFORMAT?=
??(DESCRIPTION?=
????(ADDRESS?=?(PROTOCOL?=?TCP)(HOST?=?jamax)(PORT?=?1521))
????(CONNECT_DATA?=
??????(SERVER?=?DEDICATED)
??????(SERVICE_NAME?=?informatic.jamax)
????)
??) 2. 新建源數據庫的知識庫(Repository )配置。

這里2的數據庫配置應該是連接源數據庫的,如果設置為1的配置就會出錯。