Hello,
I have tried installing percona56-server from the ports with the OpenSSL option checked ( as it is by default ) and I have completed the SSL setup and get everything to work properly except that I am stuck with TLSv1.
I tried forcing in my my.cnf the TLS version to tls_version=TLSv1.2 but then I get a warning message in the log file:
and then SSL is disabled when I connect to the server.
Any idea how to get TLSv1.2 working?
Thanks
I have tried installing percona56-server from the ports with the OpenSSL option checked ( as it is by default ) and I have completed the SSL setup and get everything to work properly except that I am stuck with TLSv1.
Code:
mysql> \s;
--------------
mysql Ver 14.14 Distrib 5.6.33-79.0 Percona, for FreeBSD11.0 (amd64) using EditLine wrapper
Connection id: 1
Current database:
Current user: root@localhost
SSL: Cipher in use is AES256-SHA
mysql> show variables like "%tls%";
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| have_tlsv1_2 | NO |
| tls_version | TLSv1 |
+---------------+-------+
Code:
2017-01-04 13:09:17 30167 [Warning] Failed to setup SSL
2017-01-04 13:09:17 30167 [Warning] SSL error: NUL
Code:
Current user: root@localhost
SSL: Not in use
Thanks