Hi everyone, can anyone explain the difference be...
# ingestion
d
Hi everyone, can anyone explain the difference between these three SSL connections? And how does each one work with MySQL ingestion? Thank you
d
On the mysql docs you can find detailed description about this -> https://dev.mysql.com/doc/refman/8.0/en/using-encrypted-connections.html
Copy code
These system variables on the server side specify the certificate and key files the server uses when permitting clients to establish encrypted connections:
Basically, this is it from the client's perspective:

ssl_ca: The path name of the Certificate Authority (CA) certificate file. (ssl_capath is similar but specifies the path name of a directory of CA certificate files.)

ssl_cert: The path name of the server public key certificate file. This certificate can be sent to the server and authenticated against the CA certificate that it has.

ssl_key: The path name of the client private key file.