Home > Database > Mysql Tutorial > body text

mysql安装后添加gbk字符集的方法

WBOY
Release: 2016-06-07 17:55:29
Original
964 people have browsed it

mysql安装后添加gbk字符集的方法,有需要的朋友可以参考下

1、查看当前字符集:

代码如下:
SHOW CHARACTER SET;

2、删除mysql相关目录

代码如下:
rm -rf /usr/local/mysql/* 安装目录
rm -rf /var/lib/mysql/mysql 数据库目录

3、重新编译

代码如下:
./configure --prefix=/usr/local/mysql --sysconfdir=/etc --localstatedir=/var/lib/mysql --with-charset=gbk --with-collation=gbk_chinese_ci --with-extra-charsets=complex
make clean
make
make install

4、安装后工作:
停止mysql服务。

代码如下:
Pkill -9 mysql
cd /var/lib/mysql/

先把master.info和relay有关的日志全部删掉

代码如下:
rm –rf *.bin
rm -rf mysql-bin.*
/usr/local/mysql/bin/mysql_install_db
chown -R mysql /var/lib/mysql
cp /usr/local/src/mysql-5.1.55/support-files/my-medium.cnf /etc/my.cnf
/usr/local/mysql/bin/mysqld_safe &
/usr/local/mysql/bin/mysqladmin -u root -p password '123456' 登录mysql试试:
/usr/local/mysql/bin/mysql -u root -p

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!