You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since Node.js 12 minimum TLS version is set to 1.2.
373
+
MariaDB server can be build with different SSL library, old version supporting only TLS up to 1.1.
374
+
The error "1976:error:1425F102:SSL routines:ssl_choose_client_version:unsupported protocol" can occur if MariaDB SSL implementation doesn't support TLSv1.2.
375
+
This can be solved by :
376
+
- Server side: update MariaDB to a recent version
377
+
- Client side: permit lesser version with "tls.DEFAULT_MIN_VERSION = 'TLSv1.1';" or with connection configuration: using option `ssl: { secureProtocol: 'TLSv1_1_method' }'
0 commit comments