SSL Automatic Configuration in Config File

Hi there ,
what are the paramaters to be mentioned in .cnf file for SSL Automatic Configuration…?
can anyone provide the sample .cnf file for the same.

1 Like

@AneeshBabu

This link has steps to setup SSL: Encrypting PXC Traffic - Percona XtraDB Cluster

An example of what’s needed in the my.cnf is:

[mysqld]
ssl-ca=/etc/mysql/certs/ca.pem
ssl-cert=/etc/mysql/certs/server-cert.pem
ssl-key=/etc/mysql/certs/server-key.pem

1 Like