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

本站中文解释

character_sets_dir 变量定义了 MySQL 服务器访问字符集定义文件的位置。服务器使用 character_sets_dir 来搜索字符集定义文件,如果该设置为空或者未设置,服务器就会使用标准的默认位置。

设置或更改服务器的 character_sets_dir 变量的语法如下:

SET GLOBAL character_sets_dir=’/path/to/charsets/’;

要持久更改此设置,请在你的 my.cnf 配置文件中设置:

[mysqld]
character_sets_dir = /path/to/charsets/

官方英文解释

character_sets_dir

Command-Line Format --character-sets-dir=dir_name
System Variable character_sets_dir
Scope Global
Dynamic No
Type Directory name

The directory where character sets are installed. See
Section 10.15, “Character Set Configuration”.


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