无法在 Wildfly 14 上设置 KIE workbench 和 KIE 服务器 7.35
Unable to setup KIE workbench and KIE server 7.35 on Wildfly 14
我设法在 wildfly 8.2.1 上部署了 KIE workbench 和服务器 6.4.0。
但
尝试在 wildfly 14.0 上部署版本 7.35.0 时失败并出现以下错误:
"WFLYDS0022: Did not receive a response to the deployment operation
within the allowed timeout period [600 seconds]. Check the server
configuration file and the server logs to find more about the status
of the deployment."
我在部署时使用独立-full.xml。
发生这种情况的原因可能是某些服务的启动时间比平时长,因此服务器无法在默认超时内启动。
您可以使用以下 属性 更改默认超时,看看是否适合您。
<system-propeties>
<property name="jboss.as.management.blocking.timeout" value="1000"/>
<system-propeties>
此外,您可以尝试禁用部署扫描器。
/subsystem=deployment-scanner/scanner=default:write-attribute(name=scan-enabled,value=false)
我设法在 wildfly 8.2.1 上部署了 KIE workbench 和服务器 6.4.0。 但 尝试在 wildfly 14.0 上部署版本 7.35.0 时失败并出现以下错误:
"WFLYDS0022: Did not receive a response to the deployment operation within the allowed timeout period [600 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment."
我在部署时使用独立-full.xml。
发生这种情况的原因可能是某些服务的启动时间比平时长,因此服务器无法在默认超时内启动。
您可以使用以下 属性 更改默认超时,看看是否适合您。
<system-propeties>
<property name="jboss.as.management.blocking.timeout" value="1000"/>
<system-propeties>
此外,您可以尝试禁用部署扫描器。
/subsystem=deployment-scanner/scanner=default:write-attribute(name=scan-enabled,value=false)