Hi All, I have installed 7.9 version and updated other configurations

Hi All,

I have installed 7.9 version and updated other configurations following the instructions given in installation guide using configure script.

Am getting below error on starting JBoss.

"deployment" => "suite.ear")]) - failure description: "JBAS014803: Duplicate resource [(\\"deployment\\" => \\"suite.ear\\")]"
11:14:05,854 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) "JBAS014784: Failed executing subsystem deployment-scanner
boot operations"
11:14:05,856 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) JBAS014612: Operation ("parallel-subsystem-boot") failed -
address: ([]) - failure description: "\\"JBAS014784: Failed executing subsystem deployment-scanner boot operations\\""
11:14:05,860 FATAL [org.jboss.as.server] (Controller Boot Thread) JBAS015957: Server boot has failed in an unrecoverable manner; exiting. See previous
messages for details.
11:14:05,877 INFO [org....

error.txt

OriginalPostID-151290

OriginalPostID-151290

  Discussion posts and replies are publicly visible

Parents
  • Just to complement what Tim has mentioned above, the specific error around that message is

    failure description: "JBAS014803: Duplicate resource [(\\"deployment\\" => \\"suite.ear\\")]"

    this means that:

    1. You have two "suite.ear" directories (different name but the same EAR) under <APPIAN_HOME>\\ear. Make sure you don't have anything else but two things under <APPIAN_HOME>\\ear:

    ---> The suite.ear directory
    ---> The suite.ear.dodeploy file

    2. Also review your standalone.xml and make sure that urn:jboss:domain:deployment-scanner subsystem only has one entry for appian.home.ear and one for the deployments directory of JBoss, for instance:

    <subsystem xmlns="urn:jboss:domain:deployment-scanner:1.1">
    <deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000"/>
    <deployment-scanner name="appian" path="${appian.home.ear}" scan-interval="5000" auto-deploy-zipped="false" auto-deploy-exploded="false" auto-deploy-xml="false" deployment-timeout="1800"/>
    </subsystem>
Reply
  • Just to complement what Tim has mentioned above, the specific error around that message is

    failure description: "JBAS014803: Duplicate resource [(\\"deployment\\" => \\"suite.ear\\")]"

    this means that:

    1. You have two "suite.ear" directories (different name but the same EAR) under <APPIAN_HOME>\\ear. Make sure you don't have anything else but two things under <APPIAN_HOME>\\ear:

    ---> The suite.ear directory
    ---> The suite.ear.dodeploy file

    2. Also review your standalone.xml and make sure that urn:jboss:domain:deployment-scanner subsystem only has one entry for appian.home.ear and one for the deployments directory of JBoss, for instance:

    <subsystem xmlns="urn:jboss:domain:deployment-scanner:1.1">
    <deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000"/>
    <deployment-scanner name="appian" path="${appian.home.ear}" scan-interval="5000" auto-deploy-zipped="false" auto-deploy-exploded="false" auto-deploy-xml="false" deployment-timeout="1800"/>
    </subsystem>
Children
No Data