我在Linux中有过一个实例。我必须将WAS实例配置文件移动到Windows。谁能让我知道如何从Linux导出配置,配置文件。如何从Linux生成*.car文件。
我尝试过$AdminTask.exportWasprofile(['-archive', '/home/user'])和传递参数的不同组合。我得到了-bash: syntax error near unexpected token -archive
提前谢谢。
发布于 2017-10-01 02:19:07
使用此命令时,需要显式指定*.car文件。例如,要导出到名为"cell.car“的文件,请尝试使用以下语法:
AdminTask.exportWasprofile(['-archive', '/home/user/cell.car'])IBM Knowledge Center中记录了这一点。
https://stackoverflow.com/questions/46466081
复制相似问题