MySQL - SSL connection

Card Puncher Data Processing

MySQL - SSL connection

About

What is Sender authentication ? (Public Key Authentication based, Certificate-based in Cryptography) and SSL - Handshake (Negociation) with MySql

The client is below the mysql cli but it can be another implementation.

For the authentication:

  • You have the private key private of the client <note>You need to keep it private.</note>
  • The MySQL Server has the public key of the client

Example

mysql \
    -u root \
    -p password \
    -h hostIPorName \ 
    --ssl-ca=server-ca.pem \
    --ssl-cert=client-cert.pem \
    --ssl-key=client-key.pem

where:







Share this page:
Follow us:
Task Runner