Jboss 7 war部署失败,我在日志中收到以下错误消息。
ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015052: Did not receive a response to the deployment operation within the allowed timeout period [60 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment
我尝试重新启动JBoss服务器,我以前从未见过它,它之前工作正常。我搜索了解决这个问题的原因,但是找不到任何有用的东西,有人可以帮忙吗?
答案 0 :(得分:58)
我尝试删除日志文件,它在开始时有所帮助,但后来又出现了错误。正确的解决方案如下:
转到Jboss_installation_dir\standalone\configuration
,找到文件standalone.xml
。更改以下行:
<subsystem xmlns="urn:jboss:domain:deployment-scanner:1.0">
<deployment-scanner scan-interval="5000" relative-to="jboss.server.base.dir" path="deployments" />
</subsystem>
成:
<subsystem xmlns="urn:jboss:domain:deployment-scanner:1.0">
<deployment-scanner scan-interval="5000" relative-to="jboss.server.base.dir" path="deployments" deployment-timeout="1000" />
</subsystem>
那么它应该可以正常工作。
注意:此deployment-timeout
以秒为单位
答案 1 :(得分:8)
这是由于磁盘空间不足,清除了一些不需要的日志文件和其他临时文件来解决此问题。
答案 2 :(得分:3)
在处理JBoss 7(6.1+ EAP)时,请记住仅在服务器未运行时编辑XML设置 - 否则它们将被覆盖并且不会发生更改。
根据the documentation,Deployment-timeout
以秒为单位指定,Scan-interval
时间以毫秒为单位指定。