Operation ("read-attribute") failed - address During Jboss Startup

1.9k views Asked by At
    <subsystem xmlns="urn:jboss:domain:datasources:5.0">
        <datasources>
            <datasource jndi-name="java:jboss/datasources/UTADS" pool-name="UTADS" enabled="true" use-java-context="true">
                <connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE</connection-url>
                <driver>h2</driver>
                <security>
                    <user-name>sa</user-name>
                    <password>sa</password>
                </security>
            </datasource>
            <drivers>
                <driver name="h2" module="com.h2database.h2">
                    <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
                </driver>
            </drivers>
        </datasources>
    </subsystem>

We have a subsystem configured as shown above. But we get the error as

2021-05-06 00:42:32,690 ERROR [org.jboss.as.controller.management-operation] (oneagentperiodiceventsmanaged) WFLYCTL0013: Operation ("read-attribute") failed - address: ([ ("subsystem" => "datasources"), ("data-source" => "UTADS") ]) - failure description: "WFLYCTL0216: Management resource '[("subsystem" => "datasources")]' not found"

On checking, I found that the reason for this error is the subsystem is not loaded during the server initialization. This issue occurs when application tries to access the details of the subsystem during startup. How do I fix this?

I even referred to a similar question. But this did not help me. Operation "read-attribute" failed during JBoss EAP 7 startup

0

There are 0 answers