MySQL Variables ssl_crlpath 数据库 参数变量解释及正确配置使用
本站中文解释
| MySQL 5.7
mysql5.7的ssl_crlpath是一个指定MySQL服务器禁止访问的文件的参数,用于设置使用X.509的客户端证书的发布列表目录。如果指定,MySQL服务器读取发布列表文件,并明确拒绝证书已被吊销。
可以使用下面语句设置ssl_crlpath参数:
SET @@GLOBAL.ssl_crlpath=’/usr/local/mysql/data/crl_path’;
官方英文解释
ssl_crlpath
Command-Line Format | --ssl-crlpath=dir_name |
---|---|
System Variable | ssl_crlpath |
Scope | Global |
Dynamic | No |
Type | Directory name |
Default Value | NULL |
The path of the directory that contains certificate
revocation-list files in PEM format. Support for
revocation-list capability depends on the SSL library used to
compile MySQL. See Section 6.3.4, “SSL Library-Dependent Capabilities”.