> 데이터 베이스 > MySQL 튜토리얼 > Ubuntu15下mysql5.6.25解决不支持中文的办法_MySQL

Ubuntu15下mysql5.6.25解决不支持中文的办法_MySQL

WBOY
풀어 주다: 2016-05-30 17:11:10
원래의
1046명이 탐색했습니다.

apt-get install 安装的,不是源码包安装的mysql

 

1 修改mysql的配置文件

 

/etc/mysql/conf.d/mysql.cnf

 

在[mysql]的下方加入如下语句:(注:这个文件下没有配置,只有【mysql】)

 

no-auto-rehash

default-character-set=utf8

 

/etc/mysql/mysql.conf.d/mysqld.cnf 

 

在[mysqld]下加入

 

socket = /var/run/mysqld/mysqld.sock

port = 3306

character-set-server=utf8 (这里是server,之前有的版本是set)

 

重启mysql: sudo /etc/init.d/mysql restart

 

查看字符集

 

mysql> show variables like '%char%';
+--------------------------+----------------------------+
| Variable_name            | Value                      |
+--------------------------+----------------------------+
| character_set_client     | utf8                       |
| character_set_connection | utf8                       |
| character_set_database   | utf8                       |
| character_set_filesystem | binary                     |
| character_set_results    | utf8                       |
| character_set_server     | utf8                       |
| character_set_system     | utf8                       |
| character_sets_dir       | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
8 rows in set (0.00 sec)
로그인 후 복사

 

 设置之后如果之前的数据库已经创建了,只能删除重新创建了。

 

一直在学习。。。

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿