mac 设置 MySQL 数据库默认编码(字符集)为 UTF-8

 

鉴于有些刚接触 MySQL 数据库的人,经常会碰到数据库中文显示的问题,MySQL 数据库刚安装时默认编码是 latin1,所以如果在数据库建表的时候没有设置 DEFAULT CHARSET=utf8 的话,就会导致数据库无法设置或显示中文的问题,下面给出在 Mac 下将 MySQL 的默认编码改为 UTF-8。


查看自己的 MySQL 的编码方式

  • 先连接 MySQL 数据库 ,在终端输入以下命令,回车后输入 MySQL 的密码。
  1. /usr/local/mysql/bin/mysql -u root -p
  2. 复制代码
  • 然后输入以下命令查看自己的 MySQL 的编码方式。
  1. show variables like '%char%';
  2. 复制代码

修改 MySQL 的默认编码

  • 进入到 /usr/local/mysql/support-files 目录,找到 my-default.cnf文件,将其复制到桌面上,重命名为 my.cnf
  • 右键桌面上的 my.cnf 文件,打开方式选择 文本编辑 ,然后将全部内容替换为下面代码。
  1. # Example MySQL config file for small systems.
  2. #
  3. # This is for a system with little memory (<= 64M) where MySQL is only used
  4. # from time to time and it's important that the mysqld daemon
  5. # doesn't use much resources.
  6. #
  7. # MySQL programs look for option files in a set of
  8. # locations which depend on the deployment platform.
  9. # You can copy this option file to one of those
  10. # locations. For information about these locations, see:
  11. # http://dev.mysql.com/doc/mysql/en/option-files.html
  12. #
  13. # In this file, you can use all long options that a program supports.
  14. # If you want to know which options a program supports, run the program
  15. # with the "--help" option.
  16. # The following options will be passed to all MySQL clients
  17. [client]
  18. default-character-set=utf8
  19. #password = your_password
  20. port = 3306
  21. socket = /tmp/mysql.sock
  22. # Here follows entries for some specific programs
  23. # The MySQL server
  24. [mysqld]
  25. default-storage-engine=INNODB
  26. character-set-server=utf8
  27. collation-server=utf8_general_ci
  28. port = 3306
  29. socket = /tmp/mysql.sock
  30. skip-external-locking
  31. key_buffer_size = 16K
  32. max_allowed_packet = 1M
  33. table_open_cache = 4
  34. sort_buffer_size = 64K
  35. read_buffer_size = 256K
  36. read_rnd_buffer_size = 256K
  37. net_buffer_length = 2K
  38. thread_stack = 128K
  39. # Don't listen on a TCP/IP port at all. This can be a security enhancement,
  40. # if all processes that need to connect to mysqld run on the same host.
  41. # All interaction with mysqld must be made via Unix sockets or named pipes.
  42. # Note that using this option without enabling named pipes on Windows
  43. # (using the "enable-named-pipe" option) will render mysqld useless!
  44. #
  45. #skip-networking
  46. server-id = 1
  47. # Uncomment the following if you want to log updates
  48. #log-bin=mysql-bin
  49. # binary logging format - mixed recommended
  50. #binlog_format=mixed
  51. # Causes updates to non-transactional engines using statement format to be
  52. # written directly to binary log. Before using this option make sure that
  53. # there are no dependencies between transactional and non-transactional
  54. # tables such as in the statement INSERT INTO t_myisam SELECT * FROM
  55. # t_innodb; otherwise, slaves may diverge from the master.
  56. #binlog_direct_non_transactional_updates=TRUE
  57. # Uncomment the following if you are using InnoDB tables
  58. #innodb_data_home_dir = /usr/local/mysql/data
  59. #innodb_data_file_path = ibdata1:10M:autoextend
  60. #innodb_log_group_home_dir = /usr/local/mysql/data
  61. # You can set .._buffer_pool_size up to 50 - 80 %
  62. # of RAM but beware of setting memory usage too high
  63. #innodb_buffer_pool_size = 16M
  64. #innodb_additional_mem_pool_size = 2M
  65. # Set .._log_file_size to 25 % of buffer pool size
  66. #innodb_log_file_size = 5M
  67. #innodb_log_buffer_size = 8M
  68. #innodb_flush_log_at_trx_commit = 1
  69. #innodb_lock_wait_timeout = 50
  70. [mysqldump]
  71. quick
  72. max_allowed_packet = 16M
  73. [mysql]
  74. no-auto-rehash
  75. # Remove the next comment character if you are not familiar with SQL
  76. #safe-updates
  77. [myisamchk]
  78. key_buffer_size = 8M
  79. sort_buffer_size = 8M
  80. [mysqlhotcopy]
  81. interactive-timeout
  82. 复制代码
  • 将修改后的文件 my.cnf 复制到 /etc 目录下。
  • 重启 MySQL 数据库就 ok 了。

 
 

 

分享到微信朋友圈

×

 

扫一扫,手机浏览

mac 设置 MySQL 数据库默认编码(字符集)为 UTF-8的更多相关文章

  1. 更改mysql数据库默认的字符集(编码方式)

    mysql数据库的默认编码方式是latin1, 在mysql中存储和显示中文时会产生乱码,必须要更改默认的编码方式为utf8 或 gbk.(以下以gbk为例.) 更改服务器的编码方式,在终端输入以下命 ...

  2. mysql数据库默认编码配置

    修改my.ini文件 以下添加[mysql] default-character-set=utf8[mysqld] character_set_server = utf8init_connect='S ...

  3. 设置MySQL的字符编码

    前言 这里我已经将MySQL的数据库编码设置为UTF-8,所以下面现实的都是UTF-8. 设置MySQL数据库的编码方式有三种,分别是基于session会话的.基于全局gloable的.永久性改变的. ...

  4. 【PHP基础】常用mySQL语句以及WampServer2.2设置数据库默认编码

    一.WampServer2.2设置数据库默认编码(此部分转自http://www.cnsecer.com/5984.html) wamp下MySQL的默认编码是Latin1,不支持中文,要支持中文的话 ...

  5. 查看和设置MySQL数据库字符集(转)

    查看和设置MySQL数据库字符集作者:scorpio 2008-01-21 10:05:17 标签: 杂谈 Liunx下修改MySQL字符集:1.查找MySQL的cnf文件的位置find / -ina ...

  6. mysql的安装、C++訪问mysql数据库、编码设置问题

    一.mysql的安装.这个相对简单,直接去官网下载mysql安装程序.就能够完毕安装过程,网上有非常多安装教程,这个没什么注意事项. 二.C++訪问mysql.主要是用到mysql定义的头文件,内部定 ...

  7. 设置MYSQL数据库编码为UTF-8

    设置MYSQL数据库编码为UTF-8   1.  编辑MySql的配置文件 MySql的配置文件Windows下一般在系统目录下或者在MySql的安装目录下名字叫my.ini,可以搜索,Linux下一 ...

  8. 拨开字符编码的迷雾--MySQL数据库字符编码

    拨开字符编码迷雾系列文章链接: 拨开字符编码的迷雾--字符编码概述 拨开字符编码的迷雾--编译器如何处理文件编码 拨开字符编码的迷雾--字符编码转换 拨开字符编码的迷雾--MySQL数据库字符编码 1 ...

  9. Linux下修改MySQL数据库字符编码为UTF-8解决中文乱码

    由于MySQL编码原因会导致数据库出现乱码. 解决办法: 修改MySQL数据库字符编码为UTF-8,UTF-8包含全世界所有国家需要用到的字符,是国际编码. 具体操作: 1.进入MySQL控制台 &g ...

随机推荐

  1. leetcode-111. 二叉树最小深度 · Tree + 递归

    题面 找出二叉树的最小深度(从根节点到某个叶子节点路径上的节点个数最小). 算法 算法参照二叉树的最大深度,这里需要注意的是当某节点的左右孩子都存在时,就返回左右子树的最小深度:如果不都存在,就需要返 ...

  2. 4.闭锁 CountDownLatch

    /*CountDownLatch 闭锁*/ CountDownLatch 是一各同步辅助类,在完成一组正在其他线程中执行的操作之前,它允许一个或多个线程一直等待 闭锁可以延迟线程的进度 直到 其到达终 ...

  3. 我是怎么找到电子书的 - IT篇

    转自于:http://my.oschina.net/0757/blog/375908#OSC_h2_8 IT-ebooks http://it-ebooks.info/ http://www.it-e ...

  4. Ubuntu系统---“NVIDIA 驱动+CUDA+cuDNN ”之后 OpenCV安装

    Ubuntu系统---“NVIDIA 驱动+CUDA+cuDNN ”之后 OpenCV安装 目录: 一.OpenCV安装包下载 二.cmake安装 三.OpenCV安装 正文 一.OpenCV安装包下 ...

  5. 图卷积神经网络(GCN)入门

    图卷积网络Graph Convolutional Nueral Network,简称GCN,最近两年大热,取得不少进展.不得不专门为GCN开一个新篇章,表示其重要程度.本文结合大量参考文献,从理论到实 ...

  6. JS基本数据类型和引用数据类型区别

    1.栈(stack)和堆(heap) stack为自动分配的内存空间,它由系统自动释放:而heap则是动态分配的内存,大小也不一定会自动释放 2.数据类型 JS分两种数据类型: 基本数据类型:Numb ...

  7. Vue-cli中的proxyTable解决开发环境的跨域问题

    https://blog.csdn.net/u012149969/article/details/80288126 https://vuejs-templates.github.io/webpack/ ...

  8. Pycharm----默认字体大小的设置

    设定前 设定后,修改字体的大小为:15号 设置方式:按照截图操作选择后,点击”apply“即可

  9. java web项目中后台控制层对参数进行自定义验证 类 Pattern

    Pattern pattern = Pattern.compile("/^([1-9]\d+元*|[0]{0,1})$/");//将给定的正则表达式编译到模式中 if(!" ...

  10. 2019牛客多校D move——乱搞&&思维题

    题意 给定 $n$ 个物品,体积分别为 $v_i$,现有 $K$ 的容积一样的箱子,按如下策略装入物品:每次选取尽可能大的装入(较大的不能装入时可以向小的找),依次装入箱子. 分析 首先,不具有严格的 ...