MariaDB and MySQL關閉二進位記錄檔方法

當系統有安裝MySQL或MariaDB資料庫系統時,日子一久了就會發現資料庫的log檔案還佔據不少空間,如果系統並非是重要系統,且沒採用資料庫同步的機制,其實是可以將資料庫的二進位記錄檔關閉,來達到節省硬碟空間的目的。

MySQL資料庫
(1)、編輯設定檔案
指令:
vi /etc/my.cnf.d/mysql-server.cnf

vi /etc/my.cnf.d/server.cnf
在「 [mysqld] 」下方新增「skip-log-bin

(2)、重新啟動服務
指令:
service mysqld restart

(3)、刪除舊有log檔案
指令:
rm -rf /var/log/mysql/*.*

MariaDB資料庫
(1)、編輯設定檔案

指令:
vi /etc/mysql/conf.d/mariadb.cnf
在「 [mysqld] 」下方新增「skip-log-bin

(2)、重新啟動服務
指令:
systemctl restart mariadb

(3)、刪除舊有log檔案
指令:
rm -rf var/log/mariadb/*.*