...
The Fabric3 Admin CLI can then be used to start the listeners. Alternatively, a script can issue an HTTP POST operation. Note that if the POST is made against the zone cluster address, Fabric3 will replicate the management change to all runtimes in the zone (cluster). The following is an example CLI session that starts all listeners:
Code Block |
---|
f zone2 //Goes ("follows" the link) to zone2 where the listeners are deployed. Substitute the appropriate zone name. p zone/runtime/transports/resume jms f zone2 // Puts the value "jms" to the zone/runtime/transports/resume resource. // Since this is a zone address, the changes will be replicated throughout the cluster. p zone/runtime/transports/resume jms |
Alternatively, a script could POST the "jms" value serialized in the JSON format to http://<zone leader>/management/zone/runtime/transports/resume. Listeners on individual runtime instances can be started by using the direct runtime address as opposed to the zone address, e.g.:
...