Attivare SSL per Mysql

https://dev.mysql.com/doc/refman/5.0/en/creating-ssl-files-using-openssl.html shell> openssl genrsa 2048 > ca-key.pem shell> openssl req -new -x509 -nodes -days 3600 -key ca-key.pem -out ca.pem # Create server certificate, remove passphrase, and sign it # server-cert.pem = public key, server-key.pem = private key shell> openssl req […]

Continue reading »