mirror of
https://github.com/MariaDB/server.git
synced 2026-01-05 02:55:43 +01:00
Add tests to verify that TLS configurations with certificate chain of trust are
supported.
The contents of the commit are inspired from the MySQL project:
969afef933
Credits to salman.s.khan@oracle.com
All new code of the whole pull request, including one or several files
that are either new files or modified ones, are contributed under the
BSD-new license. I am contributing on behalf of my employer Amazon Web
Services, Inc.
12 lines
384 B
Text
12 lines
384 B
Text
call mtr.add_suppression("Server SSL certificate doesn't verify");
|
|
CREATE USER 'user1'@'%' REQUIRE SSL;
|
|
Variable_name Value
|
|
Ssl_version TLS
|
|
|
|
Restart server and provide ssl-ca comprising intermediate_ca1 in addition to the root ca.
|
|
Variable_name Value
|
|
Ssl_version TLS
|
|
|
|
Restart server and provide unrelated ssl-ca at server startup
|
|
ERROR 2026 (HY000): TLS/SSL error:
|
|
DROP USER 'user1';
|