当前位置:Gxlcms > 数据库问题 > Linux下MySQL数据库的my.cnf配置文件,解决中文乱码问题

Linux下MySQL数据库的my.cnf配置文件,解决中文乱码问题

时间:2021-07-01 10:21:17 帮助过:4人阅读

MySQL - 5.7.28
文件放置目录:/etc/
文件权限:644
解决问题:存储中文数据乱码

 1 # For advice on how to change settings please see
 2 # http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html
 3 # *** DO NOT EDIT THIS FILE. It‘s a template which will be copied to the
 4 # *** default location during install, and will be replaced if you
 5 # *** upgrade to a newer version of MySQL.
 6 
 7 [client]
 8 default-character-set=utf8
 9 
10 [mysql]
11 #auto-rehash
12 default-character-set = utf8
13 
14 [mysqld]
15 character_set_server=utf8 
16 init_connect=‘SET NAMES utf8‘
17 
18 # Remove leading # and set to the amount of RAM for the most important data
19 # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
20 # innodb_buffer_pool_size = 128M
21 
22 # Remove leading # to turn on a very important data integrity option: logging
23 # changes to the binary log between backups.
24 # log_bin
25 
26 # These are commonly set, remove the # and set as required.
27 # basedir = .....
28 # datadir = .....
29 # port = .....
30 # server_id = .....
31 # socket = .....
32 
33 # Remove leading # to set options mainly useful for reporting servers.
34 # The server defaults are faster for transactions and fast SELECTs.
35 # Adjust sizes as needed, experiment to find the optimal values.
36 # join_buffer_size = 128M
37 # sort_buffer_size = 2M
38 # read_rnd_buffer_size = 2M 
39 
40 sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES 

 

Linux下MySQL数据库的my.cnf配置文件,解决中文乱码问题

标签:配置文件   tran   read   back   adjust   during   问题:   edit   linux   

人气教程排行