mysql> show variables like 'c%';
character_set들이 utf8로 설정되어있는지 확인.
mysql> status
명령으로도 utf8로 설정되어있는지 확인.
etc/mysql/my.cnf 파일 열어 character_set 및 collation 설정들을 utf8로..
init_connect="SET collation-connection=utf8_general_ci"
init_connect="SET NAMES utf8"
[mysqld] 부분에 요 2줄 추가.