Reputation: 453
How do I run a .jacl script against a WebService Liberty Profile server?
I am told to run:
wsadmin.sh -conntype none -f setupWAS.jacl
But I don't think wsadmin is available in Liberty Profile.
Upvotes: 0
Views: 1659
Reputation: 1280
The Liberty profile only supports configuration (or reconfiguration) via editing of the XML configuration file (at least server.xml, perhaps others if you use includes).
I recommend following samples and examples from WASDev instead: https://www.ibmdw.net/wasdev/docs/category/coding/
Upvotes: 0
Reputation: 1954
You cannot manage Liberty profile using wsadmin. Quoting infocenter;
Restriction: The wsadmin tool does not apply to the Liberty profile. See Administering the Liberty profile from the command prompt instead.
Upvotes: 5