Configure MySQL/MariaDB external database
It is strongly recommended to use an external database for production environments. After installing the database following the instructions provided with the database software, you must set up the database for use with DataPlane.
- The MySQL/MariaDB database server must have been installed and properly configured for remote access.
- A database must have been created. Note that you should create the DB which is
UTF-8
encoding compliant. - You can use the following queries to configure database for DataPlane. Make sure to replace dbname, username and password.
CREATE DATABASE dbname CHARACTER SET utf8 COLLATE utf8_general_ci; CREATE USER username IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON dbname.* TO username@'%'; flush privileges;
-
Download the MySQL JDBC driver.
You must download MySQL driver from the following URL:
NoteYou can use any latest version of MySQL JDBC driver.