Содержание
Сообщение в логе:
ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0348: Timeout after [300] seconds waiting for service container stability. Operation will roll back.
Решение:
В конфигурационном файле
/opt/synergy/jboss/bin/standalone.conf
добавить следующий параметр и перезапустить JBoss:
JAVA_OPTS=$JAVA_OPTS -Djboss.as.management.blocking.timeout=600
Замечание: решение является обходным, рекомендуется исследовать причины долгого деплоя JBoss.
Сообщение в логе:
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 [500 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment.
Решение:
Увеличить параметр deployment-timeout
в
конфигурационном файле
/opt/synergy/jboss/standalone/configuration/standalone-onesynergy.xml
:
<subsystem xmlns="urn:jboss:domain:deployment-scanner:2.0"> <deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" deployment-timeout="500"/> </subsystem>
Замечание: решение является обходным, рекомендуется исследовать причины долгого деплоя JBoss.