mysql-5.6.42修改默认的字符集在哪里

mysql-5.6.42修改默认的字符集在哪里,第1张

由于mysql默认的字符集编码为latin ,而我们一般使用的是gbk 或者 gb2312编码

所以不改过来容易造成乱码

我用的是mysql 5.0 安装程序安装的 ,安装目录在C:\Program Files\MySQL\MySQL Server 5.0

请到这个目录下面找到 my。ini文件

修改default-character-set=latin1 为 default-character-set=gbk

记住有两个地方啊 都要改

最重要的一点就是修改文件前,先停止mysql服务 ,等修改后再重新启动

使用dos命令 :net stop mysql 来停止服务 net start mysql 来启动

然后在执行你的mysql脚本 ,一切ok! 这里你可以用discuz的sql做为例子运行!

假定确定mysql位于/usr/local/mysql/bin目录

执行如下命令:/usr/local/mysql/bin/mysqld --verbose --help |grep -A 1 'Default options'

可能看到如下信息:

2019-04-14 19:18:23 0 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled

2019-04-14 19:18:23 0 [Note] mysqld (mysqld 5.6.42) starting as process 14944 ...

2019-04-14 19:18:23 14944 [Note] Plugin 'FEDERATED' is disabled.

Default options are read from the following files in the given order:

/etc/my.cnf /etc/mysql/my.cnf /usr/local/mysql/etc/my.cnf ~/.my.cnf

2019-04-14 19:18:23 14944 [Note] Binlog end

2019-04-14 19:18:23 14944 [Note] Shutting down plugin 'MyISAM'

2019-04-14 19:18:23 14944 [Note] Shutting down plugin 'CSV'

上面信息中,etc/my.cnf /etc/mysql/my.cnf /usr/local/mysql/etc/my.cnf ~/.my.cnf给出的几个目录,就是mysql依次查找配置文件的位置。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7161166.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-02
下一篇 2023-04-02

发表评论

登录后才能评论

评论列表(0条)

保存