Digital Marketing

How to check if MySQL connections are using SSL/TLS

 SELECT id, user, host, connection_type 

       FROM performance_schema.threads pst 

       INNER JOIN information_schema.processlist isp 

       ON pst.processlist_id = isp.id; 

Comments

Popular posts from this blog

MySQL Sandbox with the Sakila sample database