Recently using JBOSS7 to develop the web system, in the development environment to run normally, but sent to the scene when the error started, just start feeling very inexplicable, and then sent back to the JBoss log, found that the following error Jbas015052:did not receive a response To the deployment operation within the allowed timeout period [seconds]. Check the server configuration file and the server logs to find more about the status of the deployment. probably see the problem of time-out. So I looked at the logs in the development environment, basically loaded within 60s, and the live log shows loads far more than 60s. 60s should be the default time, so fix the problem by setting the time-out to a bit longer.
Workaround, modify the configuration of the Standalone.xml
<subsystem xmlns= "urn:jboss:domain:deployment-scanner:1.1" >
<deployment-scanner path= "Deployments" relative-to= "Jboss.server.base.dir" scan-interval= "the"/>
</subsystem>
Add deployment-timeout= "1000"
<subsystem xmlns= "urn:jboss:domain:deployment-scanner:1.1" >
<deployment-scanner path= "Deployments" relative-to= "Jboss.server.base.dir" scan-interval= "the" deployment-timeout= "/>"
</subsystem>
JBOSS7 Startup Timeout Issue JBAS015052