Ошибка при настройке Decision Server для автономного профиля IBM ODM 8.9.2 с WAS 8.5.5 JDK 1.7_64 - PullRequest
0 голосов
/ 07 января 2019

Я пытаюсь дополнить Decision Server (IBM ODM 8.9.2) на WAS 8.5.5 с JDK 1.7_64 и получаю ошибку.

Я настраиваю JDK (мы будем использовать базу данных derby DB по умолчанию, поэтому создание БД не будет):

managesdk -listAvailable
managesdk.bat -setCommandDefault -sdkname 1.7_64
managesdk.bat -setNewProfileDefault -sdkname 1.7_64

Создание профиля приложения:

.\bin\manageprofiles.bat -create -profileName ODM01
-templatePath .\profileTemplates\default
-enableAdminSecurity true -adminUserName wasadmin -adminPassword wasadmin

Затем попытка дополнить профиль сервера приложений для Decision Server:

.\bin\manageprofiles.bat
-augment -profileName ODM01
-templatePath .\profileTemplates\odm\decisionserver\default
-odmHome C:\IBM\ODM892
-databaseConfigFile .\profileTemplates\odm\decisionserver\default\ derbyDBSampleSetting.properties

Error:- WASX7357I: By request, this scripting client is not connected to any server process. Certain configuration and application operations will be available in local mode.
WASX7303I: The following options are passed to the scripting environment and are available as arguments that are stored in the argv variable: "[C:/IBM/WebSphere/AppServer/profileTemplates/odm/decisionserver/default/actions/scripts, C:/IBM/ODM892, server1]"
ERROR: Unable to load resource bundle! (com.ibm.ws.scripting.resources.messages)
!GBRPT0053I!
ERROR: Unable to load resource bundle! (com.ibm.ws.scripting.resources.messages)
!GBRPT0017I!
Traceback (most recent call last):
File "C:\IBM\WebSphere\AppServer\profileTemplates\odm\decisionserver\default\actions\scripts\decisionserverDeploymentHelper.py", line 93, in installXU
ra =  AdminConfig.installResourceAdapter(modulePath, nodeName, params)
com.ibm.ws.scripting.ScriptingException: com.ibm.ws.scripting.ScriptingException: com.ibm.websphere.management.exception.ConfigServiceException
com.ibm.websphere.management.exception.AdminException
com.ibm.websphere.management.exception.AdminException
java.util.MissingResourceException: java.util.MissingResourceException: Can't find com.ibm.rules.res.xu.messages bundle

ERROR: Unable to load resource bundle! (com.ibm.ws.scripting.resources.messages)
WASX7017E: Exception received while running file "C:\IBM\WebSphere\AppServer\profileTemplates\odm\decisionserver\default\actions/scripts/installExecutionUnitAdapter.py"; exception information: com.ibm.websphere.management.exception.ConfigServiceException
com.ibm.websphere.management.exception.AdminException
com.ibm.websphere.management.exception.AdminException
java.util.MissingResourceException: java.util.MissingResourceException: Can't find com.ibm.rules.res.xu.messages bundle

Почему он не может подключиться к любому серверному процессу?

...