Hi,
I have one Wildfly installation with one domain and three service groups each one with two servers ( 6 servers ).
I'm able to stop a single server with this cli script:
/host=master/server=MyServer01:stop
but I can't start a single server of the domain. The operation below fails:
/host=master/server=MyServer01:start
[domain@11.11.11.11:9990 server] /host=master/server=MyServer01:start
{
"outcome" => "failed",
"failure-description" => "JBAS014884: No operation named 'start' exists at address [
(\"host\" => \"master\"),
(\"server\" => \"MyServer01\")
]",
"rolled-back" => true
}
How can I write a script to start a single server or all servers assigned to a given group?
Thanks