1. 程式人生 > >Ubuntu 16.04下 更改mysql預設編碼

Ubuntu 16.04下 更改mysql預設編碼

預設的 mysql編碼 不是utf8 因此想到要改成utf8 以支援中文

my.cnf 這個配置檔案如果為空或不存在的時候mysql採用預設配置執行,這個沒有多大關係。
如果你需要做相關配置則可以拷貝任意一個配置檔案到/etc目錄下,然後根據你的實際需要進行修改就可以了。
my.cnf配置檔案在網上可以搜到很多的,你隨便複製一個然後新增到你的伺服器上就可以了
但是卻找不到配置檔案 去網上找了好久才看到這個問題 http://bbs.csdn.net/topics/391966286 三樓的解決措施是對的 記錄一下

問題:

可能也不是找不到 有下面的這個配置檔案


/etc/mysq/my.cnf

內容是這樣的。我如何找到啊。
我想改類似編碼之類的如何改。。。求助。
#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.

# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html

#
# * IMPORTANT: Additional settings that can override those from this file!
#   The files must end with '.cnf', otherwise they'll be ignored.
#

!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mysql.conf.d/


進入上述的兩個目錄拳開啟也沒有類似網上找的的配置檔案類似的文件

這個是Ubuntu16.04 直接在軟體源上安裝的

解決:

1.
sudo gedit /etc/mysql/mysql.conf.d/mysqld.cnf
2.在[mysqld]在下方新增以下程式碼
[mysqld]
init_connect='SET collation_connection = utf8_unicode_ci'
init_connect='SET NAMES utf8'
character-set-server=utf8
collation-server=utf8_unicode_ci
skip-character-set-client-handshake 
3.重啟mysql服務
sudo service mysql restart 
4.檢測字符集是否更新成utf8.
進入mysql,mysql -u root -p,輸入show variables like '%character%' 檢視字符集