Reputation: 439
i´m trying to use the new wildfly 9.0.1 final. Before, i used wildfly 8.2. I´ve copied the standalone/config folder from 8.2 to the new wildfly 9- but getting a lot of errors- it looks like he can´t add the datasources...But allready deployed the mssql driver to new wildfly:
17:09:48,419 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([ ("subsystem" => "datasources"), ("data-source" => "WebEventLogs") ]) - failure description: {"WFLYCTL0180: Services with missing/unavailable dependencies" => [ "jboss.data-source.java:/jdbc/WebEventLogs is missing [jboss.jdbc-driver.mssql]", "jboss.driver-demander.java:/jdbc/WebEventLogs is missing [jboss.jdbc-driver.mssql]", "jboss.data-source.java:/jdbc/WebEventLogs is missing [jboss.jdbc-driver.mssql]" ]}
17:09:48,434 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([ ("subsystem" => "datasources"), ("data-source" => "ShoppingPortletLocal") ]) - failure description: {"WFLYCTL0180: Services with missing/unavailable dependencies" => [ "jboss.driver-demander.java:/shoppingPortletPU is missing [jboss.jdbc-driver.mssql]", "jboss.data-source.java:/shoppingPortletPU is missing [jboss.jdbc-driver.mssql]", "jboss.data-source.java:/shoppingPortletPU is missing [jboss.jdbc-driver.mssql]"
Upvotes: 0
Views: 1237
Reputation: 14061
It seems you haven't deployed the JDBC driver module:
"jboss.data-source.java:/shoppingPortletPU is missing [jboss.jdbc-driver.mssql]"
Make sure you have your MS SQL JDBC Driver deployed. It's usually deployed as a module, on $WILDFLY_HOME/modules
.
Upvotes: 2