程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 編譯安裝mysql 5.1使用utf8解決亂碼問題

編譯安裝mysql 5.1使用utf8解決亂碼問題

編輯:MySQL綜合教程

1. yum install –y gcc  gcc-c++  ncurses-devel  bison
2.shell&gt; groupadd mysql shell&gt; useradd -g mysql mysql shell&gt; gunzip < mysql-5.1.55.tar.gz | tar -xvf - shell> cd mysql-5.1.55 shell&gt; ./configure --prefix=/usr/local/mysql --with-charset=utf8 --with-extra-charsets=all --enable-assembler --enable-thread-safe-client --with-big-tables --with-readline --with-plugins=innodb_pluginshell&gt; make shell&gt; make install shell&gt; cp support-files/my-medium.cnf /etc/my.cnf shell&gt; cd /usr/local/mysql shell&gt; bin/mysql_install_db --user=mysql shell&gt; chown -R root . shell&gt; chown -R mysql var shell&gt; chgrp -R mysql . shell&gt; bin/mysqld_safe --user=mysql & 4.這樣裝完以後竟然還是+--------------------------+----------------------------------------+
| Variable_name            | Value                                  |
+--------------------------+----------------------------------------+
| auto_increment_offset    | 1                                      |
| character_set_client     | latin1                                 |
| character_set_connection | latin1                                 |
| character_set_database   | utf8                                   |
| character_set_filesystem | binary                                 |
| character_set_results    | latin1                                 |
| character_set_server     | utf8                                   |
| character_set_system     | utf8                                   |
| character_sets_dir       | /usr/local/mysql/share/mysql/charsets/ |
+--------------------------+----------------------------------------+最後在my.cnf中設置 [mysqld]和[client] 中設置:default-character-set=utf8.但是php中還是中還是亂碼,為了不改程序.終於找到方法了原文地址--[mysqld]加入
default-character-set=utf8
init_connect=SET collation_connection = utf8_general_ci
init_connect=SET NAMES utf8
character-set-server=utf8
collation-server=utf8_general_ci
skip-character-set-client-handshake完美解決!!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved