Wiki

Clone wiki

ieeg / ConnectingToRDS

Connecting to RDS With SSL

https://rds.amazonaws.com/doc/rds-ssl-ca-cert.pem

Open Connect to database. In the Advanced tab, enable "Use SSL if available", and point "SSL CA File" to the SSL root certificate of the MySQL server (in PEM format).

The SSL CA setting is required.

Run the following query:

show status like 'ssl_cipher'; If the Ssl_cipher value is non-empty, the connection is secured using SSL.

Updated