Archive

Archive for the ‘MySQL’ Category

phpmyadmin 설치 후 설정

March 5th, 2010 Kim Jong-sun Comments off

phpmyadmin 설치후 각종 오류메시지 처리를 위해.

config.sample.inc.php 를 config.inc.php 로 복사 후 편집해주기.

  • Google Bookmarks
  • Google Reader
  • Twitter
  • Facebook
  • Google Buzz
  • WordPress
  • Share/Bookmark
Categories: MySQL Tags:

mysql 문자셋 utf8으로 변경

March 5th, 2010 Kim Jong-sun Comments off

mysql 설정파일인

/etc/my.cnf 파일에 아래 내용을 추가한다.

[client]
default-character-set = utf8

[mysqld]
character-set-client-handshake=FALSE
init_connect=”SET collation_connection = utf8_general_ci”
init_connect=”SET NAMES utf8″
default-character-set = utf8
character-set-server = utf8
collation-server = utf8_general_ci

[mysqldump]
default-character-set = utf8

[mysql]
default-character-set = utf8

  • Google Bookmarks
  • Google Reader
  • Twitter
  • Facebook
  • Google Buzz
  • WordPress
  • Share/Bookmark
Categories: MySQL Tags: