2016-09-12 6 views
0

Я пытаюсь перенести WAS-сервер 8.0.0.10 в профиль Liberty. Поэтому я загрузил инструмент миграции с помощью опции «Установить новое программное обеспечение» в меню «Справка» всего неделю назад. Я выбрал «Инструменты миграции» -> «Миграция сервера приложений Websphere» -> «Диспетчер конфигурации» -> «Набор средств миграции конфигурации Websphere для Websphere». Далее следуют шаги ссылки http://www.ibm.com/developerworks/websphere/library/techarticles/1404_vines2/1404_vines2.html. Но при выполнении комментарии в командной строке:Проблемы с приложением в мигрировании Websphere из 8.0.0.10 в профиль Liberty

wsadmin -lang jython -c "AdminTask.extractConfigProperties(['-propertiesFileName my.props'])" 

Getting Ниже сообщение об ошибке:

C:\Users\DSIVARAM\WAS-profiles\8.0\SFQ\bin>wsadmin(.sh/.bat) -lang jython -c "AdminTask.extractConfigProperties(['-propertiesFileName my.props'])" 
WASX7209I: Connected to process "SFQ" on node SFQNode using SOAP connector; The type of process is: UnManagedProcess 
WASX7411W: Ignoring the following provided option: [(.sh/.bat)] 
WASX7015E: Exception running command: "AdminTask.extractConfigProperties(['-propertiesFileName my.props'])"; exception information: 
com.ibm.ws.management.wasresource.common.WASResourceException: com.ibm.ws.management.wasresource.common.WASResourceException: com.ibm.ws.management.wasresource.common.WASResourceException: com.ibm.websphere.management.exception.AdminException: 
ADMA0144E: Application SourcingForQuality20031104 is installed with the zero binary copy option. Applications are installed using this option in a Rational unit test environment or using AppManagement MBean API. 
When an application is installed using this option it is not possible to perform any operation on this application using wsadmin or administrative console that involves accessing the application metadata or EAR file. 
Such operations include view/edit application information, export, export DDL etc. The only possible operations using wsadmin or admin console are start, stop and uninstall. 
If this application is installed using WSAD unit test environment then use WSAD to view/edit application information. 

Пожалуйста, помогите мне разобраться в проблеме.

+0

Выйти из '(.sh/.bat)', попробуйте только это: 'wsadmin -lang jython -c 'AdminTask.extractConfigProperties ([' - propertiesFileName my.props '])" ' – ebullient

ответ

1

Если вы используете сервер из инструмента разработки (Eclipse/Rad), измените настройки публикации сервера с run resources from workspace на run from server, перезапустите и переустановите приложение. Тогда вы должны иметь возможность экспортировать.

+0

Спасибо Gas :) Файл свойств создание. – siva

0

Вы не сможете извлечь информацию о приложении с помощью extractConfigProperties, если у вас установлено приложение с нулевым двоичным кодом. Я думаю, вы можете ограничить объем экстракт, используя параметры -filterMechanism или -configData, чтобы просто извлечь конфигурацию, необходимую приложению, без извлечения самой информации приложения.

См. http://www.ibm.com/support/knowledgecenter/SSAW57_8.5.5/com.ibm.websphere.nd.doc/ae/txml_7extractprops.html для примера.

 Смежные вопросы

  • Нет связанных вопросов^_^