31

Jboss 7 战争部署失败,我在日志中收到以下错误消息。

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 服务器,我以前从未见过,它之前工作正常。我用谷歌搜索了这个问题的解决方案和原因,但找不到任何真正有用的东西,有人可以帮忙吗?

4

3 回答 3

59

好吧,我尝试删除日志文件,它在开始时有所帮助,但后来我又遇到了错误。正确的解决方案如下:

转到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以秒为单位

于 2013-04-03T12:12:56.257 回答
8

这是由于磁盘空间不足导致的,清除了一些不需要的日志文件和其他临时文件以解决此问题。

于 2013-03-06T10:14:59.997 回答
3

在处理 JBoss 7 (6.1+ EAP) 时,请记住仅在服务器未运行时编辑 XML 设置 - 否则它们将被覆盖并且不会发生更改。

根据文档Deployment-timeout以秒为单位指定,Scan-interval时间以毫秒为单位指定。

于 2014-08-05T10:01:54.783 回答