码迷,mamicode.com
首页 > 数据库 > 详细

mariadb设置utf8mb4

时间:2020-06-29 18:46:48      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:https   mes   code   html   maria   nec   reload   tps   ble   

mariaDB的设置方法:

#vim /etc/my.conf

 
[mysqld]
character_set_server=utf8mb4 
collation-server=utf8mb4_unicode_ci 
init_connect=‘SET NAMES utf8mb4‘ 
skip-character-set-client-handshake=true 
 
#/etc/init.d/mariadb reload
 
#验证方法,登陆mysql
SHOW VARIABLES WHERE Variable_name LIKE ‘character\_set\_%‘ OR Variable_name LIKE ‘collation%‘;
 
 
mysql的设置方法:
#vim /etc/my.conf
 
[client]
default-character-set = utf8mb4
[mysql]
default-character-set = utf8mb4
[mysqld]
character-set-client-handshake = FALSE
character-set-server = utf8mb4
collation-server = utf8mb4_unicode_ci
init_connect=‘SET NAMES utf8mb4‘
 
#/etc/init.d/mariadb reload
 
#验证方法,登陆mysql
SHOW VARIABLES WHERE Variable_name LIKE ‘character\_set\_%‘ OR Variable_name LIKE ‘collation%‘;
 
转载:https://www.cnblogs.com/300js/p/9223539.html

mariadb设置utf8mb4

标签:https   mes   code   html   maria   nec   reload   tps   ble   

原文地址:https://www.cnblogs.com/meml/p/13209530.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!