<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>KB-1016 "JBAS010441: Failed to load module for driver [XXX.jdbc]" error returned during JBoss startup</title><link>https://community.appian.com/support/w/kb/242/kb-1016-jbas010441-failed-to-load-module-for-driver-xxx-jdbc-error-returned-during-jboss-startup</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>KB-1016 "JBAS010441: Failed to load module for driver [XXX.jdbc]" error returned during JBoss startup</title><link>https://community.appian.com/support/w/kb/242/kb-1016-jbas010441-failed-to-load-module-for-driver-xxx-jdbc-error-returned-during-jboss-startup</link><pubDate>Mon, 30 Jul 2018 04:11:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:26300112-25c4-48a2-bb18-8a7f36567898</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/242/kb-1016-jbas010441-failed-to-load-module-for-driver-xxx-jdbc-error-returned-during-jboss-startup#comments</comments><description>Current Revision posted to Appian Knowledge Base by Parmida Borhani on 7/30/2018 4:11:31 AM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;h2 id="symptoms"&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;During JBoss startup, the following error is shown in the application server log:&lt;/p&gt;
&lt;pre&gt;JBAS014612: Operation (&amp;quot;add&amp;quot;) failed - address: ([
    (&amp;quot;subsystem&amp;quot; =&amp;gt; &amp;quot;datasources&amp;quot;),
    (&amp;quot;jdbc-driver&amp;quot; =&amp;gt; &amp;quot;XXX.jdbc&amp;quot;)
]) - failure description: &amp;quot;JBAS010441: Failed to load module for driver [XXX.jdbc]&amp;quot;
&lt;/pre&gt;
&lt;h2 id="cause"&gt;Cause&lt;/h2&gt;
&lt;p&gt;The application server failed to load the module for the JDBC driver.&lt;/p&gt;
&lt;h2 id="action"&gt;Action&lt;/h2&gt;
&lt;p&gt;In &lt;strong&gt;standalone.xml&lt;/strong&gt;, ensure the driver is required by Appian, whether it be for a primary data source or a business data source. If that server does not require the driver, remove the driver from the &lt;code&gt;&amp;lt;drivers&amp;gt;&lt;/code&gt;element.&lt;/p&gt;
&lt;p&gt;If the driver is required, make sure the driver is defined similar to the examples in &lt;a href="https://docs.appian.com/suite/help/latest/Configuring_Relational_Databases.html#For_JBoss"&gt;Configuring Relational Databases for JBoss&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In &lt;code&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules&lt;/code&gt;, make sure the specified path for the driver is correct. Required locations for the different drivers are as follows:&lt;/p&gt;
&lt;table class="appianTable"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;Database&lt;/th&gt;
&lt;th&gt;Driver JAR location&lt;/th&gt;
&lt;th&gt;Module name&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MySQL&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/mysql/jdbc/main&lt;/td&gt;
&lt;td&gt;com.mysql.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Oracle&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/oracle/jdbc/main&lt;/td&gt;
&lt;td&gt;oracle.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SQL Server&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/microsoft/sqlserver/jdbc/main&lt;/td&gt;
&lt;td&gt;com.microsoft.sqlserver.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DB2&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/ibm/db2/jcc/main&lt;/td&gt;
&lt;td&gt;com.ibm.db2.jcc&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;In the appropriate driver JAR location, ensure there is a &lt;strong&gt;module.xml&lt;/strong&gt; file present. If one is not present, create one using the corresponding module name specified in &lt;strong&gt;standalone.xml&lt;/strong&gt; and the name of the JAR file.&lt;/p&gt;
&lt;p&gt;For example, the syntax used in &lt;strong&gt;module.xml&lt;/strong&gt;&amp;nbsp;for Oracle, MySQL, and DB2 is:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;module xmlns=&amp;quot;urn:jboss:module:1.0&amp;quot; name=&amp;quot;XXX.jdbc&amp;quot;&amp;gt;
  &amp;lt;resources&amp;gt;
    &amp;lt;resource-root path=&amp;quot;driver_name.jar&amp;quot;/&amp;gt;
  &amp;lt;/resources&amp;gt;
  &amp;lt;dependencies&amp;gt;
    &amp;lt;module name=&amp;quot;javax.api&amp;quot;/&amp;gt;
    &amp;lt;module name=&amp;quot;javax.transaction.api&amp;quot;/&amp;gt;
  &amp;lt;/dependencies&amp;gt;
&amp;lt;/module&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;MS SQL Server requires an additional dependency. For MS SQL Server, the syntax used in&amp;nbsp;&lt;strong&gt;module.xml&lt;/strong&gt;&amp;nbsp;is:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;module xmlns=&amp;quot;urn:jboss:module:1.0&amp;quot; name=&amp;quot;XXX.jdbc&amp;quot;&amp;gt;
  &amp;lt;resources&amp;gt;
    &amp;lt;resource-root path=&amp;quot;driver_name.jar&amp;quot;/&amp;gt;
  &amp;lt;/resources&amp;gt;
  &amp;lt;dependencies&amp;gt;
    &amp;lt;module name=&amp;quot;javax.api&amp;quot;/&amp;gt;
    &amp;lt;module name=&amp;quot;javax.transaction.api&amp;quot;/&amp;gt;&lt;br /&gt;    &amp;lt;&lt;/code&gt;&lt;code&gt;module name=&amp;quot;javax.xml.bind.api&amp;quot;/&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;code&gt;  &amp;lt;/dependencies&amp;gt; &lt;br /&gt;&amp;lt;/module&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Update the module name with what is defined in &lt;strong&gt;standalone.xml&lt;/strong&gt; and update the &lt;code&gt;&amp;lt;resource-root&amp;gt;&lt;/code&gt; path to be the name of the JAR file.&lt;/p&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of Appian using JBoss EAP as an application server.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: November 2017&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: database, application server, infrastructure, jboss&lt;/div&gt;
</description></item><item><title>KB-1016 "JBAS010441: Failed to load module for driver [XXX.jdbc]" error returned during JBoss startup</title><link>https://community.appian.com/support/w/kb/242/kb-1016-jbas010441-failed-to-load-module-for-driver-xxx-jdbc-error-returned-during-jboss-startup/revision/4</link><pubDate>Tue, 07 Nov 2017 20:49:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:26300112-25c4-48a2-bb18-8a7f36567898</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/242/kb-1016-jbas010441-failed-to-load-module-for-driver-xxx-jdbc-error-returned-during-jboss-startup#comments</comments><description>Revision 4 posted to Appian Knowledge Base by Parmida Borhani on 11/7/2017 8:49:29 PM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;h2 id="symptoms"&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;During JBoss startup, the following error is shown in the application server log:&lt;/p&gt;
&lt;pre&gt;JBAS014612: Operation (&amp;quot;add&amp;quot;) failed - address: ([
    (&amp;quot;subsystem&amp;quot; =&amp;gt; &amp;quot;datasources&amp;quot;),
    (&amp;quot;jdbc-driver&amp;quot; =&amp;gt; &amp;quot;XXX.jdbc&amp;quot;)
]) - failure description: &amp;quot;JBAS010441: Failed to load module for driver [XXX.jdbc]&amp;quot;
&lt;/pre&gt;
&lt;h2 id="cause"&gt;Cause&lt;/h2&gt;
&lt;p&gt;The application server failed to load the module for the JDBC driver.&lt;/p&gt;
&lt;h2 id="action"&gt;Action&lt;/h2&gt;
&lt;p&gt;In &lt;strong&gt;standalone.xml&lt;/strong&gt;, ensure the driver is required by Appian, whether it be for a primary data source or a business data source. If that server does not require the driver, remove the driver from the &lt;code&gt;&amp;lt;drivers&amp;gt;&lt;/code&gt;element.&lt;/p&gt;
&lt;p&gt;If the driver is required, make sure the driver is defined similar to the examples in &lt;a href="https://docs.appian.com/suite/help/latest/Configuring_Relational_Databases.html#For_JBoss"&gt;Configuring Relational Databases for JBoss&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In &lt;code&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules&lt;/code&gt;, make sure the specified path for the driver is correct. Required locations for the different drivers are as follows:&lt;/p&gt;
&lt;table class="appianTable"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;Database&lt;/th&gt;
&lt;th&gt;Driver JAR location&lt;/th&gt;
&lt;th&gt;Module name&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MySQL&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/mysql/jdbc/main&lt;/td&gt;
&lt;td&gt;com.mysql.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Oracle&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/oracle/jdbc/main&lt;/td&gt;
&lt;td&gt;oracle.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SQL Server&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/microsoft/sqlserver/jdbc/main&lt;/td&gt;
&lt;td&gt;com.microsoft.sqlserver.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DB2&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/ibm/db2/jcc/main&lt;/td&gt;
&lt;td&gt;com.ibm.db2.jcc&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;In the appropriate driver JAR location, ensure there is a &lt;strong&gt;module.xml&lt;/strong&gt; file present. If one is not present, create one using the corresponding module name specified in &lt;strong&gt;standalone.xml&lt;/strong&gt; and the name of the JAR file.&lt;/p&gt;
&lt;p&gt;For example, the syntax used in &lt;strong&gt;module.xml&lt;/strong&gt;&amp;nbsp;for Oracle, MySQL, and DB2 is:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;module xmlns=&amp;quot;urn:jboss:module:1.0&amp;quot; name=&amp;quot;XXX.jdbc&amp;quot;&amp;gt;
  &amp;lt;resources&amp;gt;
    &amp;lt;resource-root path=&amp;quot;driver_name.jar&amp;quot;/&amp;gt;
  &amp;lt;/resources&amp;gt;
  &amp;lt;dependencies&amp;gt;
    &amp;lt;module name=&amp;quot;javax.api&amp;quot;/&amp;gt;
    &amp;lt;module name=&amp;quot;javax.transaction.api&amp;quot;/&amp;gt;
  &amp;lt;/dependencies&amp;gt;
&amp;lt;/module&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;MS SQL Server requires an additional dependency. For MS SQL Server, the syntax used in&amp;nbsp;&lt;strong&gt;module.xml&lt;/strong&gt;&amp;nbsp;is:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;module xmlns=&amp;quot;urn:jboss:module:1.0&amp;quot; name=&amp;quot;XXX.jdbc&amp;quot;&amp;gt;
  &amp;lt;resources&amp;gt;
    &amp;lt;resource-root path=&amp;quot;driver_name.jar&amp;quot;/&amp;gt;
  &amp;lt;/resources&amp;gt;
  &amp;lt;dependencies&amp;gt;
    &amp;lt;module name=&amp;quot;javax.api&amp;quot;/&amp;gt;
    &amp;lt;module name=&amp;quot;javax.transaction.api&amp;quot;/&amp;gt;&lt;br /&gt;    &amp;lt;&lt;/code&gt;&lt;code&gt;module name=&amp;quot;javax.xml.bind.api&amp;quot;/&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;code&gt;  &amp;lt;/dependencies&amp;gt; &lt;br /&gt;&amp;lt;/module&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Update the module name with what is defined in &lt;strong&gt;standalone.xml&lt;/strong&gt; and update the &lt;code&gt;&amp;lt;resource-root&amp;gt;&lt;/code&gt; path to be the name of the JAR file.&lt;/p&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of Appian using JBoss EAP as an application server.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: November 2017&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: database, application server, jboss&lt;/div&gt;
</description></item><item><title>KB-1016 "JBAS010441: Failed to load module for driver [XXX.jdbc]" error returned during JBoss startup</title><link>https://community.appian.com/support/w/kb/242/kb-1016-jbas010441-failed-to-load-module-for-driver-xxx-jdbc-error-returned-during-jboss-startup/revision/3</link><pubDate>Tue, 07 Nov 2017 20:48:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:26300112-25c4-48a2-bb18-8a7f36567898</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/242/kb-1016-jbas010441-failed-to-load-module-for-driver-xxx-jdbc-error-returned-during-jboss-startup#comments</comments><description>Revision 3 posted to Appian Knowledge Base by Parmida Borhani on 11/7/2017 8:48:57 PM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;h2 id="symptoms"&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;During JBoss startup, the following error is shown in the application server log:&lt;/p&gt;
&lt;pre&gt;JBAS014612: Operation (&amp;quot;add&amp;quot;) failed - address: ([
    (&amp;quot;subsystem&amp;quot; =&amp;gt; &amp;quot;datasources&amp;quot;),
    (&amp;quot;jdbc-driver&amp;quot; =&amp;gt; &amp;quot;XXX.jdbc&amp;quot;)
]) - failure description: &amp;quot;JBAS010441: Failed to load module for driver [XXX.jdbc]&amp;quot;
&lt;/pre&gt;
&lt;h2 id="cause"&gt;Cause&lt;/h2&gt;
&lt;p&gt;The application server failed to load the module for the JDBC driver.&lt;/p&gt;
&lt;h2 id="action"&gt;Action&lt;/h2&gt;
&lt;p&gt;In &lt;strong&gt;standalone.xml&lt;/strong&gt;, ensure the driver is required by Appian, whether it be for a primary data source or a business data source. If that server does not require the driver, remove the driver from the &lt;code&gt;&amp;lt;drivers&amp;gt;&lt;/code&gt;element.&lt;/p&gt;
&lt;p&gt;If the driver is required, make sure the driver is defined similar to the examples in &lt;a href="https://docs.appian.com/suite/help/17.1/Configuring_Relational_Databases.html#For_JBoss"&gt;Configuring Relational Databases for JBoss&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In &lt;code&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules&lt;/code&gt;, make sure the specified path for the driver is correct. Required locations for the different drivers are as follows:&lt;/p&gt;
&lt;table class="appianTable"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;Database&lt;/th&gt;
&lt;th&gt;Driver JAR location&lt;/th&gt;
&lt;th&gt;Module name&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MySQL&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/mysql/jdbc/main&lt;/td&gt;
&lt;td&gt;com.mysql.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Oracle&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/oracle/jdbc/main&lt;/td&gt;
&lt;td&gt;oracle.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SQL Server&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/microsoft/sqlserver/jdbc/main&lt;/td&gt;
&lt;td&gt;com.microsoft.sqlserver.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DB2&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/ibm/db2/jcc/main&lt;/td&gt;
&lt;td&gt;com.ibm.db2.jcc&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;In the appropriate driver JAR location, ensure there is a &lt;strong&gt;module.xml&lt;/strong&gt; file present. If one is not present, create one using the corresponding module name specified in &lt;strong&gt;standalone.xml&lt;/strong&gt; and the name of the JAR file.&lt;/p&gt;
&lt;p&gt;For example, the syntax used in &lt;strong&gt;module.xml&lt;/strong&gt;&amp;nbsp;for Oracle, MySQL, and DB2 is:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;module xmlns=&amp;quot;urn:jboss:module:1.0&amp;quot; name=&amp;quot;XXX.jdbc&amp;quot;&amp;gt;
  &amp;lt;resources&amp;gt;
    &amp;lt;resource-root path=&amp;quot;driver_name.jar&amp;quot;/&amp;gt;
  &amp;lt;/resources&amp;gt;
  &amp;lt;dependencies&amp;gt;
    &amp;lt;module name=&amp;quot;javax.api&amp;quot;/&amp;gt;
    &amp;lt;module name=&amp;quot;javax.transaction.api&amp;quot;/&amp;gt;
  &amp;lt;/dependencies&amp;gt;
&amp;lt;/module&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;MS SQL Server requires an additional dependency. For MS SQL Server, the syntax used in&amp;nbsp;&lt;strong&gt;module.xml&lt;/strong&gt;&amp;nbsp;is:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;module xmlns=&amp;quot;urn:jboss:module:1.0&amp;quot; name=&amp;quot;XXX.jdbc&amp;quot;&amp;gt;
  &amp;lt;resources&amp;gt;
    &amp;lt;resource-root path=&amp;quot;driver_name.jar&amp;quot;/&amp;gt;
  &amp;lt;/resources&amp;gt;
  &amp;lt;dependencies&amp;gt;
    &amp;lt;module name=&amp;quot;javax.api&amp;quot;/&amp;gt;
    &amp;lt;module name=&amp;quot;javax.transaction.api&amp;quot;/&amp;gt;&lt;br /&gt;    &amp;lt;&lt;/code&gt;&lt;code&gt;module name=&amp;quot;javax.xml.bind.api&amp;quot;/&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;code&gt;  &amp;lt;/dependencies&amp;gt; &lt;br /&gt;&amp;lt;/module&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Update the module name with what is defined in &lt;strong&gt;standalone.xml&lt;/strong&gt; and update the &lt;code&gt;&amp;lt;resource-root&amp;gt;&lt;/code&gt; path to be the name of the JAR file.&lt;/p&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of Appian using JBoss EAP as an application server.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed:&amp;nbsp;February 2017&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: database, application server, jboss&lt;/div&gt;
</description></item><item><title>KB-1016 "JBAS010441: Failed to load module for driver [XXX.jdbc]" error returned during JBoss startup</title><link>https://community.appian.com/support/w/kb/242/kb-1016-jbas010441-failed-to-load-module-for-driver-xxx-jdbc-error-returned-during-jboss-startup/revision/2</link><pubDate>Tue, 07 Nov 2017 20:44:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:26300112-25c4-48a2-bb18-8a7f36567898</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/242/kb-1016-jbas010441-failed-to-load-module-for-driver-xxx-jdbc-error-returned-during-jboss-startup#comments</comments><description>Revision 2 posted to Appian Knowledge Base by Parmida Borhani on 11/7/2017 8:44:11 PM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;h2 id="symptoms"&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;During JBoss startup, the following error is shown in the application server log:&lt;/p&gt;
&lt;pre&gt;JBAS014612: Operation (&amp;quot;add&amp;quot;) failed - address: ([
    (&amp;quot;subsystem&amp;quot; =&amp;gt; &amp;quot;datasources&amp;quot;),
    (&amp;quot;jdbc-driver&amp;quot; =&amp;gt; &amp;quot;XXX.jdbc&amp;quot;)
]) - failure description: &amp;quot;JBAS010441: Failed to load module for driver [XXX.jdbc]&amp;quot;
&lt;/pre&gt;
&lt;h2 id="cause"&gt;Cause&lt;/h2&gt;
&lt;p&gt;The application server failed to load the module for the JDBC driver.&lt;/p&gt;
&lt;h2 id="action"&gt;Action&lt;/h2&gt;
&lt;p&gt;In &lt;strong&gt;standalone.xml&lt;/strong&gt;, ensure the driver is required by Appian, whether it be for a primary data source or a business data source. If that server does not require the driver, remove the driver from the &lt;code&gt;&amp;lt;drivers&amp;gt;&lt;/code&gt;element.&lt;/p&gt;
&lt;p&gt;If the driver is required, make sure the driver is defined similar to the examples in &lt;a href="https://docs.appian.com/suite/help/17.1/Configuring_Relational_Databases.html#For_JBoss"&gt;Configuring Relational Databases for JBoss&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In &lt;code&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules&lt;/code&gt;, make sure the specified path for the driver is correct. Required locations for the different drivers are as follows:&lt;/p&gt;
&lt;table class="appianTable"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;Database&lt;/th&gt;
&lt;th&gt;Driver JAR location&lt;/th&gt;
&lt;th&gt;Module name&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MySQL&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/mysql/jdbc/main&lt;/td&gt;
&lt;td&gt;com.mysql.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Oracle&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/oracle/jdbc/main&lt;/td&gt;
&lt;td&gt;oracle.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SQL Server&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/microsoft/sqlserver/jdbc/main&lt;/td&gt;
&lt;td&gt;com.microsoft.sqlserver.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DB2&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/ibm/db2/jcc/main&lt;/td&gt;
&lt;td&gt;com.ibm.db2.jcc&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;In the appropriate driver JAR location, ensure there is a &lt;strong&gt;module.xml&lt;/strong&gt; file present. If one is not present, create one using the corresponding module name specified in &lt;strong&gt;standalone.xml&lt;/strong&gt; and the name of the JAR file.&lt;/p&gt;
&lt;p&gt;For example, the syntax used in &lt;strong&gt;module.xml&lt;/strong&gt;&amp;nbsp;for Oracle, MySQL, and DB2 is:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;module xmlns=&amp;quot;urn:jboss:module:1.0&amp;quot; name=&amp;quot;XXX.jdbc&amp;quot;&amp;gt;
  &amp;lt;resources&amp;gt;
    &amp;lt;resource-root path=&amp;quot;driver_name.jar&amp;quot;/&amp;gt;
  &amp;lt;/resources&amp;gt;
  &amp;lt;dependencies&amp;gt;
    &amp;lt;module name=&amp;quot;javax.api&amp;quot;/&amp;gt;
    &amp;lt;module name=&amp;quot;javax.transaction.api&amp;quot;/&amp;gt;
  &amp;lt;/dependencies&amp;gt;
&amp;lt;/module&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;For MS SQL Server, the syntax used in&amp;nbsp;&lt;strong&gt;module.xml&lt;/strong&gt;&amp;nbsp;is:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;module xmlns=&amp;quot;urn:jboss:module:1.0&amp;quot; name=&amp;quot;XXX.jdbc&amp;quot;&amp;gt;
  &amp;lt;resources&amp;gt;
    &amp;lt;resource-root path=&amp;quot;driver_name.jar&amp;quot;/&amp;gt;
  &amp;lt;/resources&amp;gt;
  &amp;lt;dependencies&amp;gt;
    &amp;lt;module name=&amp;quot;javax.api&amp;quot;/&amp;gt;
    &amp;lt;module name=&amp;quot;javax.transaction.api&amp;quot;/&amp;gt;&lt;br /&gt;    &amp;lt;&lt;/code&gt;&lt;code&gt;module name=&amp;quot;javax.xml.bind.api&amp;quot;/&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;code&gt;  &amp;lt;/dependencies&amp;gt; &lt;br /&gt;&amp;lt;/module&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Update the module name with what is defined in &lt;strong&gt;standalone.xml&lt;/strong&gt; and update the &lt;code&gt;&amp;lt;resource-root&amp;gt;&lt;/code&gt; path to be the name of the JAR file.&lt;/p&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of Appian using JBoss EAP as an application server.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed:&amp;nbsp;February 2017&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: database, application server, jboss&lt;/div&gt;
</description></item><item><title>KB-1016 "JBAS010441: Failed to load module for driver [XXX.jdbc]" error returned during JBoss startup</title><link>https://community.appian.com/support/w/kb/242/kb-1016-jbas010441-failed-to-load-module-for-driver-xxx-jdbc-error-returned-during-jboss-startup/revision/1</link><pubDate>Fri, 10 Feb 2017 16:13:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:26300112-25c4-48a2-bb18-8a7f36567898</guid><dc:creator>Nick Vigilante</dc:creator><comments>https://community.appian.com/support/w/kb/242/kb-1016-jbas010441-failed-to-load-module-for-driver-xxx-jdbc-error-returned-during-jboss-startup#comments</comments><description>Revision 1 posted to Appian Knowledge Base by Nick Vigilante on 2/10/2017 4:13:47 PM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;h2 id="symptoms"&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;During JBoss startup, the following error is shown in the application server log:&lt;/p&gt;
&lt;pre&gt;JBAS014612: Operation (&amp;quot;add&amp;quot;) failed - address: ([
    (&amp;quot;subsystem&amp;quot; =&amp;gt; &amp;quot;datasources&amp;quot;),
    (&amp;quot;jdbc-driver&amp;quot; =&amp;gt; &amp;quot;XXX.jdbc&amp;quot;)
]) - failure description: &amp;quot;JBAS010441: Failed to load module for driver [XXX.jdbc]&amp;quot;
&lt;/pre&gt;
&lt;h2 id="cause"&gt;Cause&lt;/h2&gt;
&lt;p&gt;The application server failed to load the module for the JDBC driver.&lt;/p&gt;
&lt;h2 id="action"&gt;Action&lt;/h2&gt;
&lt;p&gt;In &lt;strong&gt;standalone.xml&lt;/strong&gt;, ensure the driver is required by Appian, whether it be for a primary data source or a business data source. If that server does not require the driver, remove the driver from the &lt;code&gt;&amp;lt;drivers&amp;gt;&lt;/code&gt;element.&lt;/p&gt;
&lt;p&gt;If the driver is required, make sure the driver is defined similar to the examples in &lt;a href="https://docs.appian.com/suite/help/17.1/Configuring_Relational_Databases.html#For_JBoss"&gt;Configuring Relational Databases for JBoss&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In &lt;code&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules&lt;/code&gt;, make sure the specified path for the driver is correct. Required locations for the different drivers are as follows:&lt;/p&gt;
&lt;table class="appianTable"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;Database&lt;/th&gt;
&lt;th&gt;Driver JAR location&lt;/th&gt;
&lt;th&gt;Module name&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MySQL&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/mysql/jdbc/main&lt;/td&gt;
&lt;td&gt;com.mysql.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Oracle&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/oracle/jdbc/main&lt;/td&gt;
&lt;td&gt;oracle.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SQL Server&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/microsoft/sqlserver/jdbc/main&lt;/td&gt;
&lt;td&gt;com.microsoft.sqlserver.jdbc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DB2&lt;/td&gt;
&lt;td&gt;&amp;lt;JBOSS_HOME&amp;gt;/modules/com/ibm/db2/jcc/main&lt;/td&gt;
&lt;td&gt;com.ibm.db2.jcc&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;In the appropriate driver JAR location, ensure there is a &lt;strong&gt;module.xml&lt;/strong&gt; file present. If one is not present, create one using the corresponding module name specified in &lt;strong&gt;standalone.xml&lt;/strong&gt; and the name of the JAR file. An example of the syntax used in &lt;strong&gt;module.xml&lt;/strong&gt; is as follows:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;module xmlns=&amp;quot;urn:jboss:module:1.0&amp;quot; name=&amp;quot;XXX.jdbc&amp;quot;&amp;gt;
  &amp;lt;resources&amp;gt;
    &amp;lt;resource-root path=&amp;quot;driver_name.jar&amp;quot;/&amp;gt;
  &amp;lt;/resources&amp;gt;
  &amp;lt;dependencies&amp;gt;
    &amp;lt;module name=&amp;quot;javax.api&amp;quot;/&amp;gt;
    &amp;lt;module name=&amp;quot;javax.transaction.api&amp;quot;/&amp;gt;
  &amp;lt;/dependencies&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Update the module name with what is defined in &lt;strong&gt;standalone.xml&lt;/strong&gt; and update the &lt;code&gt;&amp;lt;resource-root&amp;gt;&lt;/code&gt; path to be the name of the JAR file.&lt;/p&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of Appian using JBoss EAP as an application server.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed:&amp;nbsp;February 2017&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: database, application server, jboss&lt;/div&gt;
</description></item></channel></rss>