Choose the best answer.Your MySQL Server is running locally on your Linux installation, and has SSL connections configured but not mandatory.
# mysql -u root -h localhost -p Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 9
Server version: 8.0.18-commercial MySQL Enterprise Server - Commercial mysql> STATUS;
Connection id: 9 Current database:
Current user: root@localhost SSL: Not in use
Current pager: stdout Using outfile:' ' Using delimiter: ;
Server version: 8.0. 18-commercial MySQL Enterprise Server - Commercial Protocol version: 10
Connection: Localhost via UNIX socket server characterset: utf8mb4
Db characterset: utf8mb4 Client characterset: utf8mb4 Conn. characterset: utf8mb4
UNIX socket: /var/lib/mysql/mysql.sock Uptime: 2 min 54 sec
Threads: 2 Questions: 10 slow queries: 0 opens: 132 Flush tables: 3 open tables: 52 Queries per
Second avg: 0.057
Mysql> SHOW GLOBAL VARIABLES WHERE Variable_name LIKE 'ssl%' AND Value !='';
+ ----------------+---------------- +
| Variable_name | Value|
+---------------- +---------------- +
| ssl_ca | ca.pem |
| ssl_cert | server-cert.pem |
| ssl_fips_mode | OFF |
| ssl_key | server-key.pem |
+ ---------------+----------------- +
What is the reason for SSL not being used?