程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MYSQL入門知識 >> mysql打開日志功能 使用教程

mysql打開日志功能 使用教程

編輯:MYSQL入門知識
 

首先查看mysql日志是不是啟用的

#mysql -uroot -p

mysql> show variables like ‘log_bin';

+—————+——-+
| Variable_name | Value |
+—————+——-+
| log_bin | OFF |
+—————+——-+
1 row in set (0.00 sec)

我的為OFF日志沒有打開,反之為ON日志就打開了

然後修改mysql配置文件my.cnf,一般my.cnf的路徑在/etc/下

在[mysqld]下

添加

log-bin = /data/mysql/log/logbin.log
log-error = /data/mysql/log/error.log
log=/data/mysql/log/mysql.log

:wq保存並退出

service mysqld restart

Stopping mysqld: [ OK ]
Starting mysqld: [ OK ]

#mysql -uroot -p

mysql> show variables like ‘log_bin';
+—————+——-+
| Variable_name | Value |
+—————+——-+
| log_bin | ON |
+—————+——-+
1 row in set (0.00 sec)

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved