MySQL
To connect to MySQL, the solution uses the MySQL Connector/J driver.
Installing the driver
Oracle does not allow redistribution of the MySQL Connector/J driver. Therefore, it is not included in the distribution. You must download the driver from the MySQL website and add it to the [Install folder]/server/lib
folder.
TIP
On the download site select platform Independent and ZIP Archive. Then extract the mysql-connector-j-<version>/mysql-connector-j-<version>.jar
file and copy it to the [Install folder]/server/lib
folder.
Configuration
Parameter | Value |
---|---|
cfg.server.local.config.url | jdbc:mysql://<server>:<port>/<database> |
cfg.server.local.config.user | Your MySQL username |
cfg.server.local.config.password | Your MySQL password |
cfg.server.local.config.driver | com.mysql.cj.jdbc.Driver |