mysql数据库中文乱码(大数据)
一、修改服务器环境变量为utf-8
1、 vim /etc/locale.conf
#LANG="en_US.UTF-8"
LANG="zh_CN.UTF-8"
2、source /etc/locale.conf
二、修改远程连接工具编码为utf-8 (SecureCRT、xhsell)
三、修改mysql数据库字符集
1、vim /etc/my.cnf #在[mysqld]下加入下列语句
init_connect='SET collation_connection = utf8_unicode_ci'
init_connect='SET NAMES utf8'
character-set-server=utf8
collation-server=utf8_unicode_ci
skip-character-set-client-handshake
2、重启数据库
./usr/local/support-files/mysql.server restart
四、修改所创建的数据库字符集为utf-8