ubuntukylin_mysql5.7基础 将mysql的默认编码修改为utf8

镇场文:
       学儒家经世致用,行佛家普度众生,修道家全生保真,悟易理象数通变。以科技光耀善法,成就一良心博客。
______________________________________________________________________________________________________
Operating System:UbuntuKylin 16.04 LTS 64bit
mysql: Ver 14.14 Distrib 5.7.17, for Linux (x86_64) using  EditLine wrapper

优秀教程推荐:

http://blog.csdn.net/qq_32144341/article/details/51318390

原来的编码:

[email protected]:~$ mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 5.7.17-0ubuntu0.16.04.1 (Ubuntu)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql> show variables like ‘character%‘;
+--------------------------+----------------------------+
| Variable_name            | Value                      |
+--------------------------+----------------------------+
| character_set_client     | utf8                       |
| character_set_connection | utf8                       |
| character_set_database   | latin1                     |
| character_set_filesystem | binary                     |
| character_set_results    | utf8                       |
| character_set_server     | latin1                     |
| character_set_system     | utf8                       |
| character_sets_dir       | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
8 rows in set (0.01 sec)

mysql> exit
Bye
[email protected]:~$

修改后的编码:

[email protected]:~# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.17-0ubuntu0.16.04.1 (Ubuntu)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql> show variables like ‘character%‘;
+--------------------------+----------------------------+
| Variable_name            | Value                      |
+--------------------------+----------------------------+
| character_set_client     | utf8                       |
| character_set_connection | utf8                       |
| character_set_database   | utf8                       |
| character_set_filesystem | binary                     |
| character_set_results    | utf8                       |
| character_set_server     | utf8                       |
| character_set_system     | utf8                       |
| character_sets_dir       | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
8 rows in set (0.00 sec)

mysql> exit
Bye

操作步骤:

[email protected]:~$ sudo -s
[sudo] xinjin 的密码:
[email protected]:~# service mysql stop
[email protected]:~# gedit /etc/mysql/mysql.conf.d/mysqld.cnf

[email protected]:~# gedit /etc/mysql/conf.d/mysql.cnf

[email protected]:~# service mysql start
[email protected]:~# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.17-0ubuntu0.16.04.1 (Ubuntu)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql> show variables like ‘character%‘;
+--------------------------+----------------------------+
| Variable_name            | Value                      |
+--------------------------+----------------------------+
| character_set_client     | utf8                       |
| character_set_connection | utf8                       |
| character_set_database   | utf8                       |
| character_set_filesystem | binary                     |
| character_set_results    | utf8                       |
| character_set_server     | utf8                       |
| character_set_system     | utf8                       |
| character_sets_dir       | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
8 rows in set (0.00 sec)

mysql> exit
Bye

______________________________________________________________________________________________________
若是您觉得此博文有可以改进的地方或者内容过时了,请评论,我会仔细思考的。
注:此博文仅用于科研学习,如果侵犯到您的权益,请及时告知,我会做出相应的处理。

时间: 2024-10-18 23:51:29

ubuntukylin_mysql5.7基础 将mysql的默认编码修改为utf8的相关文章

wnmp中,mysql的默认密码修改

wnmp中,mysql的默认密码修改. 给我们的印象是,以前mysql默认密码都为空,好久没折腾这个了,今天下了个wnmp环境,mysql密码死活改不了,都想砸电脑了,结果实验出来了.... 默然密码是:password 不敢独享,赶紧贴出来,留作纪念!

mysql数据库字符编码修改

mysql数据库字符编码修改 修改数据库的字符集mysql>use mydb mysql>alter database mydb character set utf8; 创建数据库指定数据库的字符集 mysql>create database mydb character set utf8; 通过MySQL命令行修改: mysql> set character_set_client=utf8;Query OK, 0 rows affected (0.00 sec) mysql>

mysql 5.5 编码设置为utf8 转载自:http://outofcontrol.ca/thoughts/comments/change-mysql-5.5-default-character-set-to-utf8

Change MySQL 5.5 default character-set to UTF8 连接里是linux下的 在window下my.ini Add under [client]  the following code snippet: loose-default-character-set = utf8 Add under [mysqld] the following code snippet:init_connect=‘SET collation_connection = utf8_u

记事本默认编码改为UTF-8

前端时间发现用记事本直接创建的记录目标信息的TXT文本再用sublime打开变成了乱码,才发现编码有问题,记事本直接创建的文本编码竟然是ANSI编码. 于是动手将记事本默认编码改为UTF-8. 记事本创建一个新空白文档,不输入文字直接保存,选择"另存为"将编码设置为UTF-8. 将utf-8.txt复制到系统文件夹C:\Windows\SHELLNEW 打开注册表 搜索 定位到HKEY_CLASSES_ROOT\.txt\ShellNew 将路径设置为我们前面在C:\Windows\S

修改MySQL的默认编码

MySQL数据库的默认编码是latin1,在Linux中,可以通过修改MySQL的配置文件my.cnf来设置这个默认编码.需要在my.cnf中加入如下代码: [client] default-character-set=utf8 [mysql] default-character-set=utf8 [mysqld] default-character-set=utf8 collation-server=utf8_unicode_ci init-connect='SET NAMES utf8' c

MySQL设置默认编码

查看默认编码:show variables like "char%" MySQL5.5以下版本: 1.打开配置文件 2.在[client]和[mysqld]字段下面均添加default-character-set=utf8,保存并关闭 3.重启mysql服务 MySQL5.5以上版本: 1.打开配置文件 2.[mysqld]下添加的应该为: character-set-server=utf8 collation-server=utf8_general_ci 3.重启mysql服务

mac下更改MySQL的默认编码

mysql默认的编码是latin1,它不支持中文,所以我们一般需要修改他的默认编码格式. 打开终端1. 进入root权限sudo -i 2. cp /usr/local/mysql/support-files/my-default.cnf /etc/my.cnf 3. vi /etc/my.cnf编辑,把以下内容追加到my.cnf的末尾 [mysqld]default-storage-engine=INNODB character-set-server=utf8 collation-server

Eclipse中JSP页面默认编码修改

JSP页面默认编码为ISO-8859-1 要修改为UTF-8,步骤如下 选择windon-->preference 在弹出框操作 以后新建JSP页面编码为UTF-8编码 原文地址:https://www.cnblogs.com/seachan/p/11498669.html

将mysql默认编码改为UTF8

1. WIN+R  net stop mysql  关闭mysql服务 2. 复制my-dafault.ini,重命名为my.ini,进入里面,在[mysql]前加, [mysql] port=3306 default-character-set=utf8 后加 character-set-server=utf8 3.WIN+R  net start mysql  开启mysql服务 注: show variables like 'character%' 可查看mysql编码方式