溫馨提示×

溫馨提示×

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

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

MySQL binlog日志亂碼的處理方法

發(fā)布時間:2021-08-30 22:35:28 來源:億速云 閱讀:1578 作者:chen 欄目:MySQL數(shù)據(jù)庫

這篇文章主要講解了“MySQL binlog日志亂碼的處理方法”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“MySQL binlog日志亂碼的處理方法”吧!

OS:Red Hat Enterprise Linux Server release 6.5 (Santiago)

DB:5.6.30-log

使用mysqlbinlog打開日志,發(fā)現(xiàn)日志內(nèi)容存在亂碼

MySQL binlog日志亂碼的處理方法

首先想到檢查MySQL數(shù)據(jù)庫的字符集。
MySQL binlog日志亂碼的處理方法

MySQL binlog日志亂碼的處理方法

發(fā)現(xiàn)字符集都一致的,看了操作系統(tǒng)環(huán)境變量的字符集,發(fā)現(xiàn)字符集都是一直的。

  1. [root@mysql1 log]# echo $LANG

  2. en_US.UTF-8

接著在網(wǎng)上查資料發(fā)現(xiàn)有人說

當(dāng)mysql服務(wù)器版本是5.6時,一定切記要使用版本>=3.4的mysqlbinlog,否則會出現(xiàn)亂碼問題。

查了我的mysqlbinlog版本:

  1. [root@mysql1 log]#  mysqlbinlog --version

  2. mysqlbinlog Ver 3.3 for redhat-linux-gnu at x86_64

發(fā)現(xiàn)版本確實低于3.4 。

那這個怎么單獨(dú)升級呢???難道MySQL 5.6.30自帶的版本自己不能用???

使用絕對路徑再查詢一次版本:

  1. [root@mysql1 log]# /mysql/bin/mysqlbinlog --version

  2. /mysql/bin/mysqlbinlog Ver 3.4 for Linux at x86_64

坑爹?。。。?!絕對路徑是對的。

使用絕對路徑的方式查看日志,亂碼消失。

MySQL binlog日志亂碼的處理方法


解決相對路徑問題。

檢查環(huán)境變量.bash_profile的設(shè)置。

  1. [root@mysql1 ~]# vi .bash_profile

  2. # .bash_profile


  3. # Get the aliases and functions

  4. if [ -f ~/.bashrc ]; then

  5. . ~/.bashrc

  6. fi


  7. # User specific environment and startup programs


  8. PATH=$PATH:$HOME/bin:/mysql/bin

  9. export PATH

加環(huán)境變量的時候把/mysql/bin加在的最后面,系統(tǒng)讀變量從前到后的順序。

檢查/usr/bin目錄,果然有個mysqlbinlog的程序,查詢版本是3.3的

  1. [root@mysql1 bin]# /usr/bin/mysqlbinlog --version

  2. /usr/bin/mysqlbinlog Ver 3.3 for redhat-linux-gnu at x86_64

現(xiàn)在知道問題的原因,處理方法有兩種:

1、修改.bash_profile,把/mysql/bin設(shè)置放在第一位,重新加載變量。

  1. [root@mysql1 ~]# vi .bash_profile

  2. # .bash_profile


  3. # Get the aliases and functions

  4. . ~/.bashrc

  5. fi


  6. # User specific environment and startup programs


  7. PATH=/mysql/bin:$PATH:$HOME/bin


  8. export PATH

2、刪除/usr/bin目錄下的mysqlbinlog程序,可以使用改名的方式。然后重新加載變量。

[root@mysql1 bin]# mv mysqlbinlog mysqlbinlog.bak

感謝各位的閱讀,以上就是“MySQL binlog日志亂碼的處理方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對MySQL binlog日志亂碼的處理方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

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

AI