I'm very new to MySQL and also to SSL connections, I was following MySQL official documentation http://dev.mysql.com/doc/refman/5.1/en/ssl-options.html, but I dont get how connect using SSL: I've already have this:
mysql> show variables like '%ssl%';
+---------------+----------------------------+
| Variable_name | Value |
+---------------+----------------------------+
| have_openssl | YES |
| have_ssl | YES |
| ssl_ca | /etc/mysql/ca-cert.pem |
| ssl_capath | |
| ssl_cert | /etc/mysql/server-cert.pem |
| ssl_cipher | |
| ssl_key | /etc/mysql/server-key.pem |
+---------------+----------------------------+
7 rows in set (0.00 sec)
But it's not clear for me if that is enough to use SSL when connecting to others servers. I enabled my SSL, but should I send the certificate when connecting? https://dev.mysql.com/doc/refman/5.5/en/mysql-ssl-set.html
Is it required? or is only enabling SSL as I did enough?