wsrep_certificate_expiration_hours_warning
This page is part of MariaDB's Documentation.
The parent of this page is: System Variables for MariaDB Enterprise Server
Topics on this page:
Overview
In 10.6 ES:
Print warning about certificate expiration if the X509 certificate used for wsrep connections is about to expiren in hours given as an argument. If the value is 0, warnings are not printed.
In 10.6 CS, 10.5 ES, 10.5 CS, 10.4 ES, 10.4 CS, 10.3 ES, 10.3 CS, 10.2 ES, 10.2 CS:
Not present
See also: System Variables for MariaDB Enterprise Server 10.6, in 10.5 ES, in 10.4 ES, in 10.3 ES, in 10.2 ES, in 10.6 CS, in 10.5 CS, in 10.4 CS, in 10.3 CS, and in 10.2 CS
USAGE
The wsrep_certificate_expiration_hours_warning
system variable can be set in a configuration file:
[mariadb]
...
# warn 3 days before certificate expiration
wsrep_certificate_expiration_hours_warning=72
The global value of the wsrep_certificate_expiration_hours_warning
system variable can also be set dynamically at runtime by executing SET GLOBAL:
SET GLOBAL wsrep_certificate_expiration_hours_warning=72;
When the wsrep_certificate_expiration_hours_warning
system variable is set dynamically at runtime, its value will be reset the next time the server restarts. To make the value persist on restart, set it in a configuration file too.
DETAILS
The wsrep_certificate_expiration_hours_warning
system variable can be used to configure certificate expiration warnings for MariaDB Enterprise Cluster, powered by Galera:
When the
wsrep_certificate_expiration_hours_warning
system variable is set to0
, certificate expiration warnings are not printed to the MariaDB Error Log.When the
wsrep_certificate_expiration_hours_warning
system variable is set to a valueN
, which is greater than0
, certificate expiration warnings are printed to the MariaDB Error Log when the node's certificate expires inN
hours or less.
PARAMETERS
Command-line | --wsrep_certificate_expiration_hours_warning=# |
Configuration file | Supported |
Dynamic | Yes |
Scope | Global |
Data Type | BIGINT UNSIGNED |
Minimum Value | 0 |
Maximum Value | 18446744073709551615 |
Product Default Value | 0 |
CHANGE HISTORY
Release Series | History |
---|---|
10.6 Enterprise |
|
10.6 Community |
|
10.5 Enterprise |
|
10.5 Community |
|
10.4 Enterprise |
|
10.4 Community |
|
10.3 Enterprise |
|
10.3 Community |
|
10.2 Enterprise |
|
10.2 Community |
|