Share Your Feedback – Help Us Improve Search on Community!
Please take a few minutes to participate in our Search Feedback Survey. Your insights will help us deliver the results you need faster and more accurately.
Click here to take the survey
Manually upload JDBC drivers
ETL examples, troubleshooting, and tips
Search in
Improve your search experience:
Exact phrase→Use quotes " "(e.g., "error 404")
Wildcard→Use * for partial words(e.g., build*, *tion)
AND / OR→Combine keywords(e.g., login AND error, login OR sign‑in)
Keep it short→Use 2–3 relevant words, not full sentences
Filters→Narrow results by section(Knowledge Base, Users, Products)
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
This example uses MySQL8 and the MySQL JDBC driver version 8.2.0.
Download the JDBC driver.
SSH to the server. Navigate to/opt/jboss-as/modules/com/apc/etl/
Create the directory mysql-8_2_0 with the command:
mkdir mysql-8_2_0
Navigate tomysql-8_2_0and create the directorymainwith the command:
mkdir main
Navigate tomainand create themodule.xmlfile with the command:
vi module.xml
Save the module.xml file and exit.
Paste the following into the module.xml file: Note: This is the contents of the module.xml file from postgresql, in the directory /opt/jboss-as/modules/com/apc/etl/postgresql/main/
Change all properties where the postgresql driver is mentioned. And also make sure to add the .jar file path line in "<resources> <resource-root path="mysql-connector-java-8.2.0.jar"/> </resources>". When you are finished, your module.xml file should look like this:
Copy the JDBC driver .jar file from the downloaded location to the server. You can use the scp command, for example, <download location>/mysql-connector-java-8.2.0/mysql-connector-java-8.2.0.jar <username>@<SERVERIP>:/tmp
Move the .jar file from the /tmp folder to /opt/jboss-as/modules/com/apc/etl/mysql-8_2_0/main/
Navigate to /opt/jboss-as/modules/com/apc/etl/main/
Open the module.xml file.
Add<property name="mysql-8_2_0"/>to the <properties> section.
Add<module export="true" name="com.apc.etl.mysql-8_2_0"/>to the dependencies section. When you are finished, your module.xml file should look like this: