Websphere配置文件创建卡在importConfigArchive上

时间:2017-09-29 04:03:24

标签: websphere profile windows-server-2012

我在Windows Server 2012 R2 Standard Evaluation上安装了Websphere Application Server,并尝试使用ProfileManagement Tool创建新的配置文件。 但它总是停留在"运行配置命令:importConfigArchive"。  enter image description here

当我看到日志文件时,它以此消息结束

<record>
 <date>2017-09-29T10:36:40</date>
  <millis>1506656200757</millis>
  <sequence>4829</sequence>
  <logger>com.ibm.ws.install.configmanager.actionengine.ant.utils.ANTLogToCmtLogAdapter</logger>
  <level>INFO</level>
  <class>com.ibm.ws.install.configmanager.actionengine.ant.utils.ANTLogToCmtLogAdapter</class>
  <method>messageLogged</method>
  <thread>30</thread>
  <message>Checking for wsadmin listener initialization</message>
</record>

我错过了任何配置吗?

2 个答案:

答案 0 :(得分:0)

sudo unlink / bin / sh $ sudo ln -s / bin / bash / bin / sh 然后启动pmt创建个人资料。

https://www.ibm.com/developerworks/community/forums/html/topic?id=77777777-0000-0000-0000-000014838043

答案 1 :(得分:0)

另一个对我有帮助的想法,因为我在 Windows 10 上遇到了某种 shell 问题,那就是构建 ma​​nageprofiles 命令。

就我而言,在创建配置文件 failedProfile 失败后我使用的步骤是:

  1. 导航到/logs/manageprofiles/myProfile_create.log
  2. 查找第一个条目:
  <class>com.ibm.wsspi.profile.WSProfileCLI</class>
  <method>invokeWSProfile</method>
  <thread>1</thread>
  <message>Incoming command line is: { "-create" ,"-profileName" ,"failedProfile" .... .. }</message>
  1. 从此在文本编辑器中构建一个新命令,例如:
  .\manageprofiles.bat -create -profileName goodProfile ... <all the rest>... 

在这里的另一个答案中似乎提到了某种已知问题,其中假设“sh”映射到“bash”。我不太熟悉,但重点是确保您的命令行有效。