溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Ubuntu下如何實現(xiàn)MYSQL的中文輸入

發(fā)布時間:2022-01-15 13:48:43 來源:億速云 閱讀:168 作者:小新 欄目:數(shù)據(jù)庫

這篇文章將為大家詳細講解有關Ubuntu下如何實現(xiàn)MYSQL的中文輸入,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

Ubuntu的MYSQL使用apt-get安裝的,直接跳過了配置的過程,所以默認不能輸入中文;
 
1.查找MySQL的cnf文件的位置
 
find / -iname '*.cnf' -print
 
/etc/ssl/openssl.cnf
/etc//debian.cnf
/etc/mysql/conf.d/mysqld_safe_syslog.cnf
/etc/mysql/my.cnf
/usr/share/doc/mysql-server-5.1/examples/my-small.cnf
/usr/share/ssl-cert/ssleay.cnf  www.2cto.com  
/usr/lib/ssl/openssl.cnf
 
2. 直接配置/etc/mysql/my.cnf文件
 
3. 修改my.cnf
 
vi /etc/my.cnf
在[client]下添加
default-character-set=utf8
在[mysqld]下添加
default-character-set=utf8
 
4.重新啟動MySQL
 
[root@bogon ~]# sudo /etc/init.d/mysql restart
Shutting down MySQL                                         [ 確定 ]
Starting MySQL.                                             [ 確定 ]
[root@bogon ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.22-rc-community-log MySQL Community Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
 
5.查看字符集設置
 
mysql> show variables like 'collation_%';
+----------------------+-----------------+
| Variable_name         | Value            |
+----------------------+-----------------+
| collation_connection | utf8_general_ci |
| collation_database    | utf8_general_ci |
| collation_server      | utf8_general_ci |
+----------------------+-----------------+
3 rows in set (0.02 sec)  www.2cto.com  
mysql> show variables like 'character_set_%';
+--------------------------+----------------------------+
| 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.02 sec)
mysql>
 
 

關于“Ubuntu下如何實現(xiàn)MYSQL的中文輸入”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI