我刚刚使用IBM安装管理器为开发人员版本8.5.5.9安装了Websphere应用程序服务器。当我尝试创建配置文件时,我收到一个错误,指向我的日志文件。这是它的开始:
!ENTRY org.eclipse.equinox.app 0 0 2016-07-27 11:53:16.101
!MESSAGE Product com.ibm.ws.pmt.views.standalone.standAloneWasTools could not be found.
!ENTRY org.eclipse.osgi 2 0 2016-07-27 11:53:16.146
!MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
!SUBENTRY 1 org.eclipse.osgi 2 0 2016-07-27 11:53:16.146
!MESSAGE Bundle websphere@plugins\com.ibm.ws.pmt.views_8.5.1.jar was not resolved.
!SUBENTRY 2 com.ibm.ws.pmt.views 2 0 2016-07-27 11:53:16.146
!MESSAGE Missing imported package com.ibm.ws.profile.utils_0.0.0.
!SUBENTRY 2 com.ibm.ws.pmt.views 2 0 2016-07-27 11:53:16.146
!MESSAGE Missing imported package com.ibm.ws.profile_0.0.0.
!SUBENTRY 2 com.ibm.ws.pmt.views 2 0 2016-07-27 11:53:16.146
!MESSAGE Missing imported package com.ibm.ws.wct.config.definitionLocations_0.0.0.
!SUBENTRY 2 com.ibm.ws.pmt.views 2 0 2016-07-27 11:53:16.146
!MESSAGE Missing imported package com.ibm.ws.install.configmanager.logging_0.0.0.
!SUBENTRY 2 com.ibm.ws.pmt.views 2 0 2016-07-27 11:53:16.146
!MESSAGE Missing imported package com.ibm.ws.wct.config.definitions_0.0.0.
!SUBENTRY 2 com.ibm.ws.pmt.views 2 0 2016-07-27 11:53:16.146
!MESSAGE Missing imported package com.ibm.wsspi.profile.registry_0.0.0.
!SUBENTRY 2 com.ibm.ws.pmt.views 2 0 2016-07-27 11:53:16.146
!MESSAGE Missing imported package com.ibm.wsspi.profile_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2016-07-27 11:53:16.147
!MESSAGE Bundle websphere@plugins\com.ibm.ws.pmt.tools_8.0.0.jar was not resolved.
!SUBENTRY 2 com.ibm.ws.pmt.tools 2 0 2016-07-27 11:53:16.147
!MESSAGE Missing imported package com.ibm.ws.install.configmanager.logging_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2 0 2016-07-27 11:53:16.147
!MESSAGE Bundle websphere@plugins\com.ibm.ws.pmt.views.standalone_8.0.0.jar was not resolved.
J9VM - R26_Java626_SR8_20151222_1616_B283040 JIT - tr.r11_20151209_107111.01 GC - R26_Java626_SR8_20151222_1616_B283040_CMPRSS J9CL - 20151222_283040 BootLoader常量:OS = win32,ARCH = x86_64,WS = win32,NL = en_GB
def products_in_order(products_selected):
locations = [p.location for p in products_selected]
# locations = [80, 79, 81] (for instance)
return max(locations) - min(locations) <= 2
Cleary有一些丢失的jar文件,但我不知道为什么他们没有安装或者是从他们那里得到的。 还应该提到我对Websphere来说是全新的。
答案 0 :(得分:1)
我遇到了同样的问题,但找到了解决方案(至少对我而言)。
我发现我的计算机是用@ user.home指向UNC的图像,这是一个webshpere不喜欢的UNC。 (见http://www-01.ibm.com/support/docview.wss?uid=swg21584343)。当我收到错误时,甚至显示一个对话框,显示带有UNC名称的错误日志的位置。
如我在上一段中放置的ibm链接所示,要解决我只是找到我的config.ini(在我的情况下,C:\ Program_Files (x86)\ IBM \ WebSphere \ AppServer \ bin \ ProfileManagement \ eclipse64 \ configuration)并在以下2个键中将@ user.home更改为c \:/ temp:
• osgi.instance.area.default=@user.home/AppData/Lo . . .
• osgi.configuration.area=@user.home/AppData/Lo . . .
希望这有帮助! ģ