MySQL Certs and SSL DB
-
Hi,
I don’t know if there’s a solution, but we can’t run Duplicator because it can’t connect to the database. The current wp-config file of the “working” WordPress setup has the following code in it, don’t know if it will help us, but would it be possible to edit the installer file to include this? Or does this security work completely different to how I think?
$client_key_pem = ‘/var/mysql-certs/client-key.pem’;
$client_cert_pem = ‘/var/mysql-certs/client-cert.pem’;
$server_ca_pem = ‘/var/mysql-certs/server-ca.pem’;define( ‘MYSQL_CLIENT_FLAGS’, MYSQLI_CLIENT_SSL );
define(‘MYSQL_SSL_KEY’, $client_key_pem);
define(‘MYSQL_SSL_CERT’, $client_cert_pem);
define(‘MYSQL_SSL_CA’, $server_ca_pem);Any response would be appreciated.
- The topic ‘MySQL Certs and SSL DB’ is closed to new replies.