This time around, I'm using UCD to install WebSphere Liberty Profile (WLP), using the appropriately named WebSphere Liberty Plugin: -
IBM WebSphere Liberty
One of the steps provided by this Plugin is Install Server Archive which expands a JAR or ZIP file containing the WLP codebase.
This step takes a few mandatory ( indicated below with a red asterisk ) including Source File: -
I specify the Source File property at the Application level: -
but saw this: -
…
license=true
source=wlp-webProfile7-17.0.0.3.zip
…
wlpHome=/opt/ibm/WebSphere/Liberty/
wlpUserDir=
…
source=wlp-webProfile7-17.0.0.3.zip
…
wlpHome=/opt/ibm/WebSphere/Liberty/
wlpUserDir=
…
Unzipping server archive in : /opt/ibm/WebSphere/Liberty
Caught: : src '/opt/ibm/UCD/agent/var/work/WLP/wlp-webProfile7-17.0.0.3.zip
' doesn't exist.
: src '/opt/ibm/UCD/agent/var/work/WLP/wlp-webProfile7-17.0.0.3.zip
' doesn't exist.
at org.apache.tools.ant.taskdefs.Expand.execute(Expand.java:128)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at com.urbancode.air.plugin.websphereliberty.WebSphereLibertyHelper.installServerArchive(WebSphereLibertyHelper.groovy:194)
at com.urbancode.air.plugin.websphereliberty.WebSphereLibertyHelper$installServerArchive.call(Unknown Source)
at installServerArchive.run(installServerArchive.groovy:25)
when I executed the Component Process.
' doesn't exist.
: src '/opt/ibm/UCD/agent/var/work/WLP/wlp-webProfile7-17.0.0.3.zip
' doesn't exist.
at org.apache.tools.ant.taskdefs.Expand.execute(Expand.java:128)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at com.urbancode.air.plugin.websphereliberty.WebSphereLibertyHelper.installServerArchive(WebSphereLibertyHelper.groovy:194)
at com.urbancode.air.plugin.websphereliberty.WebSphereLibertyHelper$installServerArchive.call(Unknown Source)
at installServerArchive.run(installServerArchive.groovy:25)
when I executed the Component Process.
One of my colleagues immediately spotted the flaw: -
…
Caught: : src '/opt/ibm/UCD/agent/var/work/WLP/wlp-webProfile7-17.0.0.3.zip
' doesn't exist.
' doesn't exist.
…
The clue is that there's a space between .zip and the trailing apostrophe.
As he rightly suggested, I'd inserted a Carriage Return / Line Feed ( CR/LF ) in the Application Property.
Once I edited this from: -
to: -
all was well: -
No comments:
Post a Comment