WFLYCTL0419: 'abcd-efjh-ijkl-mnop-qrstuv-yxyz' is an invalid value for parameter node-identifier. Values must have a maximum length of 23 bytes" in JBoss EAP 7

Solution Verified - Updated -

Issue

Our application is failing to deploy with this error in JBoss EAP 7 :

ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 75) WFLYCTL0013: Operation ("add") failed - address: ([("subsystem" => "transactions")]) - failure description: "WFLYCTL0419: 'abcd-efjh-ijkl-mnop-qrstuv-yxyz' is an invalid value for parameter node-identifier. Values must have a maximum length of 23 bytes"
...
ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "example.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => [
        "jboss.txn.TransactionManager",
        "jboss.txn.TransactionSynchronizationRegistry"
    ],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.deployment.unit.\"example.war\".REGISTER is missing [jboss.txn.TransactionManager, jboss.txn.TransactionSynchronizationRegistry]"]
}
ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([
    ("subsystem" => "ee"),
    ("context-service" => "default")
]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.concurrent.ee.tsp"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.concurrent.ee.context.service.default is missing [jboss.concurrent.ee.tsp]"]
}
ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([("subsystem" => "jpa")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.txn.UserTransactionRegistry"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.jpa-usertransactionlistener is missing [jboss.txn.UserTransactionRegistry]"]
}
ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([("subsystem" => "jca")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => [
        "jboss.txn.UserTransactionRegistry",
        "jboss.txn.JBossContextXATerminator",
        "jboss.txn.ArjunaRecoveryManager",
        "jboss.txn.TransactionManager",
        "jboss.txn.TransactionSynchronizationRegistry"
    ],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.connector.transactionintegration is missing [jboss.txn.TransactionManager, jboss.txn.TransactionSynchronizationRegistry, jboss.txn.UserTransactionRegistry, jboss.txn.JBossContextXATerminator, jboss.txn.ArjunaRecoveryManager]"]
}
ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([("subsystem" => "security")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.txn.TransactionManager"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.security.transaction-manager-locator is missing [jboss.txn.TransactionManager]"]
}
ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([
    ("subsystem" => "jca"),
    ("workmanager" => "default")
]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.txn.JBossContextXATerminator"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.connector.workmanager.default is missing [jboss.txn.JBossContextXATerminator]"]
}
ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([("subsystem" => "ejb3")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => [
        "jboss.txn.context.local",
        "jboss.txn.UserTransactionAccessControlService"
    ],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => [
        "jboss.ejb3.EJB3UserTransactionAccessControlService is missing [jboss.txn.UserTransactionAccessControlService]",
        "jboss.ejb.suspend-handler is missing [jboss.txn.context.local]"
    ]
}
ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([
    ("subsystem" => "jca"),
    ("bootstrap-context" => "default")
]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => [
        "jboss.txn.JBossContextXATerminator",
        "jboss.txn.ArjunaTransactionManager"
    ],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.connector.bootstrapcontext.default is missing [jboss.txn.ArjunaTransactionManager, jboss.txn.JBossContextXATerminator]"]
}
INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "example.war" (runtime-name : "example.war")
INFO  [org.jboss.as.controller] (Controller Boot Thread) WFLYCTL0183: Service status report
WFLYCTL0184:    New missing/unsatisfied dependencies:
      service jboss.concurrent.ee.tsp (missing) dependents: [service jboss.concurrent.ee.context.service.default]
      service jboss.txn.ArjunaRecoveryManager (missing) dependents: [service jboss.connector.transactionintegration]
      service jboss.txn.ArjunaTransactionManager (missing) dependents: [service jboss.connector.bootstrapcontext.default]
      service jboss.txn.JBossContextXATerminator (missing) dependents: [service jboss.connector.bootstrapcontext.default, service jboss.connector.transactionintegration, service jboss.connector.workmanager.default]
      service jboss.txn.TransactionManager (missing) dependents: [service jboss.deployment.unit."example.war".REGISTER, service jboss.connector.transactionintegration, service jboss.security.transaction-manager-locator]
      service jboss.txn.TransactionSynchronizationRegistry (missing) dependents: [service jboss.deployment.unit."example.war".REGISTER, service jboss.connector.transactionintegration]
      service jboss.txn.UserTransactionAccessControlService (missing) dependents: [service jboss.ejb3.EJB3UserTransactionAccessControlService]
      service jboss.txn.UserTransactionRegistry (missing) dependents: [service jboss.jpa-usertransactionlistener, service jboss.connector.transactionintegration]
      service jboss.txn.context.local (missing) dependents: [service jboss.ejb.suspend-handler]

Environment

  • Red Hat JBoss Enterprise Application Platform (EAP) 7

Subscriber exclusive content

A Red Hat subscription provides unlimited access to our knowledgebase, tools, and much more.

Current Customers and Partners

Log in for full access

Log In

New to Red Hat?

Learn more about Red Hat subscriptions

Using a Red Hat product through a public cloud?

How to access this content