Cluster TLS State Inspection
Inspect per-connection TLS state across a MariaDB cluster via the information_schema.wsrep_connections view (cipher, certificate subject, issuer, and version per connection).
Last updated
Was this helpful?
Inspect per-connection TLS state across a MariaDB cluster via the information_schema.wsrep_connections view (cipher, certificate subject, issuer, and version per connection).
The information_schema.wsrep_connections view is available in MariaDB Enterprise Server from version 11.8.3-1.
Operators and auditors often need to answer "which certificate is each node presenting, and over what cipher" without scraping logs. The wsrep_connections view exposes per-connection TLS state.
The wsrep_connections plugin provides one row per Galera connection:
connection_id
Connection identifier.
connection_scheme
Connection scheme / transport.
local_address
Local endpoint address.
remote_address
Remote peer address.
cipher
Negotiated TLS cipher (empty if the connection is not encrypted).
certificate_subject
Subject of the peer certificate.
certificate_issuer
Issuer of the peer certificate.
certificate_version
Version of the peer certificate.
SELECT remote_address, cipher, certificate_subject, certificate_issuer
FROM information_schema.wsrep_connections;A connection with an empty cipher is not using TLS. Comparing certificate_issuer across rows helps confirm every peer chains to the expected cluster CA.
This page is licensed: CC BY-SA / Gnu FDL
Last updated
Was this helpful?
Was this helpful?

