通过 HTTP API 停止 JBoss EAP 7.2 服务器组

通过 HTTP API 停止 JBoss EAP 7.2 服务器组

我可以使用 JBoss 7.2 CLI 停止我的服务器组:

jboss_cli -c "/server-group=MyServerGroup :stop-servers(blocking=true)"

我如何通过 HTTP REST API 执行此操作?

答案1

停止服务器:

curl --digest http://localhost:9990/management --header "Content-Type: application/json" -u user:password -d '{"address":[{"server-group":"MyServerGroup"}],"operation":"stop-servers","blocking":true}'

启动服务器:

curl --digest http://localhost:9990/management --header "Content-Type: application/json" -u user:password -d '{"address":[{"server-group":"MyServerGroup"}],"operation":"start-servers"}'

相关内容