MySQL Variables ssl_capath 数据库 参数变量解释及正确配置使用

本站中文解释

ssl_capath指定保存CA证书(Certificate Authority)文件的目录,用于SSL连接的验证。这些文件内包含一个或多个CA的信息,当MySQL需要确认客户端的合法性时,CA会检查其所指定目录下的所有文件,是否有client certificate的信息。

可以通过以下方式来设置ssl_capath:

在my.cnf配置文件中添加如下内容:ssl_capath=/etc/ssl/mysql_dir

在MySQL客户端命令控制台中输入:SET GLOBAL ssl_capath = ‘/etc/ssl/mysql_dir’

官方英文解释

ssl_capath

Command-Line Format --ssl-capath=dir_name
System Variable ssl_capath
Scope Global
Dynamic No
Type Directory name
Default Value NULL

The path name of the directory that contains trusted SSL
Certificate Authority (CA) certificate files in PEM format.
Support for this capability depends on the SSL library used to
compile MySQL; see Section 6.3.4, “SSL Library-Dependent Capabilities”.


数据运维技术 » MySQL Variables ssl_capath 数据库 参数变量解释及正确配置使用