在jacl和wsadmin中使用变量

时间:2015-11-05 09:14:22

标签: scripting websphere tcl wsadmin jacl

我正在尝试在jacl上的wsadmin中使用安装脚本中的变量。首先我要指定

set nodeName [$AdminControl getNode]
set cellName [$AdminControl getCell]

然后在我的脚本中我想使用这两个变量,但由于某种原因它完成了想要它们

$AdminApp install C:/ssc.war { -nopreCompileJSPs -installed.ear.destination $(APP_INSTALL_ROOT)/$(CELL) -distributeApp -nouseMetaDataFromBinary -nodeployejb -appname ssc_war -createMBeansForResources -noreloadEnabled -nodeployws -validateinstall warn -noprocessEmbeddedConfig -filepermission .*\.dll=755#.*\.so=755#.*\.a=755#.*\.sl=755 -noallowDispatchRemoteInclude -noallowServiceRemoteInclude -asyncRequestDispatchType DISABLED -nouseAutoLink -noenableClientModule -clientMode isolated -novalidateSchema -contextroot /ssc -MapModulesToServers {{"F" ssc.war,WEB-INF/web.xml WebSphere:cell=$**cellName**,node=$**nodeName**,server=server1}} -MapWebModToVH {{"Fortify Portal" ssc.war,WEB-INF/web.xml default_host}} -CtxRootForWebMod {{"Fortify Portal" ssc.war,WEB-INF/web.xml /ssc}}}

语法可能有问题

1 个答案:

答案 0 :(得分:0)

在您提供的初始脚本中,我没有看到任何使用变量nodeNamecellName的尝试。另外,你真的关心提供所有这些论点吗?其中大多数都是默认值。另外,你没有引用"围绕.war路径,这是必需的。

要在wsadmin脚本中使用变量,请在变量名称前添加$符号。如:

set myvar "test"
puts $myvar

因此,要安装应用程序,它应该像以下一样简单:

set cellName [$AdminControl getCell]
set nodeName [$AdminControl getNode]
set serverName [$AdminControl getServer]
$AdminApp install "C:/ssc.war" {
    -node $nodeName 
    -cell $cellName 
    -server $serverName
}

我建议您查看用于WebSphere脚本的IBM doc,它描述了您尝试执行的操作: Installing enterprise applications using wsadmin scripting