5

MySQL SSL support


R
Robin V.

When your MySQL database is installed on another server, it might be good from a security standpoint if all MySQL connections are secured. Especially when you are creating, altering and deleting user databases.

MySQL has support for this:
dev.mysql.com/doc/refman/8.0/en/using-encrypted-connections.html

Certificate config could be added to the following file:
/usr/local/directadmin/conf/mysql.conf

ssl_mode (required)
ssl_ca (required)
ssl_capath (optional)
ssl_cipher (optional)
ssl_cert (optional)
ssl_key (optional)

A