mysql 한글 깨질 때
http://ggogun.tistory.com/entry/mysql-question-mark
https://nesoy.github.io/articles/2017-05/mysql-UTF8
/etc/my.cnf 찾아서
[client]
default-character-set=utf8
[mysql]
default-character-set=utf8
[mysqld]
collation-server = utf8_unicode_ci
init-connect='SET NAMES utf8'
character-set-server = utf8
추가 후 새로시작
service mysqld restart
기존에 이미 생성된 것들은 적용이 안되기 때문에
따로 적용해 줘야 한다.
현재 Character-Set 확인하기
show variables like ‘c%’
ALTER DATABASE [DB명] DEFAULT CHARACTER SET utf8;
ALTER TABLE MASTER_INFO convert to charset utf8;
반응형
'차근차근 > SQL' 카테고리의 다른 글
mysql 8 / mysql5 외부접속 (0) | 2018.05.18 |
---|---|
mysql 데이터 베이스 생성 (0) | 2018.02.08 |
Found option without preceding group in config file (0) | 2017.06.13 |
이클립스 톰캣에서 mysql 연동 (0) | 2017.05.31 |
oracle -> mysql 변경 에러 1 (0) | 2017.05.18 |