centos mariadb亂碼的解決方法:1、在[mysqld]標籤下加上“character-set-server=utf8”;2、在[client]標籤下新增“default-character-set=utf8” ;3、重啟服務即可。
本文操作環境:CentOS 7系統、Dell G3電腦。
如何解決centos mariadb 亂碼問題?
CentOS 7 設定MariaDB(MySQL)字元編碼,防止中文亂碼
[root@localhost~]# vi /etc/my.cnf (如果不行则sudo vi /etc/my.cnf) #在[mysqld]标签下添加 character-set-server=utf8 [root@localhost~]# vi /etc/my.cnf.d/client.cnf #在[client]标签下添加 default-character-set=utf8
重啟
[root@localhost~]# systemctl restart mariadb mysql -u root -p 后查看现在的字符编码 show variables like '%character%';
推薦教學:《centos教學》
以上是如何解決centos mariadb 亂碼問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!