MySQL 通用查询日志(General Query Log)

同大多数关系型数据库一样,日志文件是MySQL数据库的重要组成部分。MySQL有几种不同的日志文件,通常包括错误日志文件,二进制日志,通用日志,慢查询日志,等等。这些日志可以帮助我们定义mysqld内部发生的事情,数据库性能故障,记录数据的变更历史,用户恢复数据库等等。本文主要描述通用查询日志。

1、MySQL日志文件系统的组成
   a、错误日志:记录启动、运行或停止mysqld时出现的问题。
   b、通用日志:记录建立的客户端连接和执行的语句。
   c、更新日志:记录更改数据的语句。该日志在MySQL 5.1中已不再使用。
   d、二进制日志:记录所有更改数据的语句。还用于复制。
   e、慢查询日志:记录所有执行时间超过long_query_time秒的所有查询或不使用索引的查询。
   f、Innodb日志:innodb redo log
   
   缺省情况下,所有日志创建于mysqld数据目录中。
   可以通过刷新日志,来强制mysqld来关闭和重新打开日志文件(或者在某些情况下切换到一个新的日志)。
   当你执行一个FLUSH LOGS语句或执行mysqladmin flush-logs或mysqladmin refresh时,则日志被老化。
   对于存在MySQL复制的情形下,从复制服务器将维护更多日志文件,被称为接替日志。

2、通用查询日志
   通用查询日志可以存放到一个文本文件或者表中,所有连接和语句被记录到该日志文件或表,缺省未开启该日志。
   通过--log[=file_name]或-l [file_name]选项启动它。如果没有给定file_name的值, 默认名是host_name.log。
   mysqld按照它接收的顺序记录语句到查询日志。这可能与执行的顺序不同。
   不同于更新日志和二进制日志,它们在查询执行后,但是任何一个锁释放之前记录日志。
   查询日志包含所有语句,而二进制日志不包含只查询数据的语句。
   服务器重新启动和日志刷新不会产生新的一般查询日志文件。

3、通用查询日志的系统变量
   log_output=[none|file|table|file,table]  #通用查询日志输出格式
   general_log=[on|off]                     #是否启用通用查询日志
   general_log_file[=filename]              #通用查询日志位置及名字

4、通用查询日志的备份 
   在Linux或Unix中,你可以通过下面的命令重新命名文件
   并创建一个新文件:
   shell> mv hostname.log hostname-old.log
   shell> mysqladmin flush-logs
   shell> cp hostname-old.log to-backup-directory
   shell> rm hostname-old.log
   在Windows中,服务器打开日志文件期间不能重新命名日志文件。必须先停止服务器然后重新命名日志文件。然后重启服务器来创建新日志文件。

5、演示通用查询日志的使用

a、启用通用查询日志
--演示环境
[email protected][(none)]> show variables like ‘%version%‘;
+-------------------------+------------------------------+
| Variable_name           | Value                        |
+-------------------------+------------------------------+
| innodb_version          | 5.5.39                       |
| protocol_version        | 10                           |
| slave_type_conversions  |                              |
| version                 | 5.5.39-log                   |
| version_comment         | MySQL Community Server (GPL) |
| version_compile_machine | x86_64                       |
| version_compile_os      | Linux                        |
+-------------------------+------------------------------+

--查看系统变量
[email protected][(none)]> show variables like ‘%general%‘;
+------------------+----------------------------+
| Variable_name    | Value                      |
+------------------+----------------------------+
| general_log      | OFF                        |
| general_log_file | /var/lib/mysql/suse11b.log |
+------------------+----------------------------+

--查看当前的通用日志,显示无日志文件
[email protected][(none)]> system ls /var/lib/mysql/suse11b.log
ls: cannot access /var/lib/mysql/suse11b.log: No such file or directory
--设置变量general_log以开启通用查询日志
[email protected][(none)]> set @@global.general_log=1;
Query OK, 0 rows affected (0.00 sec)

--再次查看通用日志文件已存在
[email protected][(none)]> system ls /var/lib/mysql/suse11b.log
/var/lib/mysql/suse11b.log
[email protected][(none)]> select * from tempdb.tb1;  --执行查询
+------+------+
| id   | val  |
+------+------+
|    1 | jack |
+------+------+

--查看通用日志文件内容
[email protected][(none)]> system more /var/lib/mysql/suse11b.log
/usr/sbin/mysqld, Version: 5.5.39-log (MySQL Community Server (GPL)). started with:
Tcp port: 3306  Unix socket: /var/lib/mysql/mysql.sock
Time                 Id Command    Argument
141003 16:18:12     4 Query     show variables like ‘%general%‘
141003 16:18:55     4 Query     select * from tempdb.tb1

b、更改通用查询日志位置
[email protected][(none)]> exit
Bye
suse11b:~ # service mysql stop
Shutting down MySQL...                                          done
suse11b:~ # mysqld --general_log_file=/tmp/suse11b.log --user=mysql &
[1] 47009
suse11b:~ # ps -ef|grep mysql|grep -v grep
mysql    47009 44514  1 16:22 pts/0    00:00:00 mysqld --general_log_file=/tmp/suse11b.log --user=mysql
root     47053 44514  0 16:22 pts/0    00:00:00 grep mysql
suse11b:~ # mysql
[email protected][(none)]> system ls /tmp/suse11b.log
ls: cannot access /tmp/suse11b.log: No such file or directory
[email protected][(none)]> show variables like ‘%gener%‘;
+------------------+------------------+
| Variable_name    | Value            |
+------------------+------------------+
| general_log      | OFF              |
| general_log_file | /tmp/suse11b.log |
+------------------+------------------+

[email protected][(none)]> set global general_log=on;
Query OK, 0 rows affected (0.01 sec)

--此时从系统变量看出,通用日志已经到/tmp目录下
[email protected][(none)]> show variables like ‘%gener%‘;
+------------------+------------------+
| Variable_name    | Value            |
+------------------+------------------+
| general_log      | ON               |
| general_log_file | /tmp/suse11b.log |
+------------------+------------------+

--发布查询
[email protected][(none)]> select count(*) from tempdb.tb1;
+----------+
| count(*) |
+----------+
|        1 |
+----------+

--查看通用日志文件内容
[email protected][(none)]> system more /tmp/suse11b.log
mysqld, Version: 5.5.39-log (MySQL Community Server (GPL)). started with:
Tcp port: 3306  Unix socket: /var/lib/mysql/mysql.sock
Time                 Id Command    Argument
141003 16:30:03     1 Query     show variables like ‘%gener%‘
141003 16:30:09     1 Query     select count(*) from tempdb.tb1

c、通用查询日志输出方式
--可以输出为文件,表以及不输出,即TABLE,FILE,NONE
--系统变量log_output
[email protected][(none)]> show variables like ‘log_output‘;
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| log_output    | FILE  |
+---------------+-------+

--下面修改为输出为表方式
[email protected][(none)]> set global log_output=‘TABLE‘;
Query OK, 0 rows affected (0.00 sec)

[email protected][(none)]> show variables like ‘log_output‘;
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| log_output    | TABLE |
+---------------+-------+

--发布查询
[email protected][(none)]> select * from tempdb.tb1;
+------+------+
| id   | val  |
+------+------+
|    1 | jack |
+------+------+

--Author: Leshami
--Blog  : http://blog.csdn.net/leshami

[email protected][(none)]> system more /tmp/suse11b.log
mysqld, Version: 5.5.39-log (MySQL Community Server (GPL)). started with:
Tcp port: 3306  Unix socket: /var/lib/mysql/mysql.sock
Time                 Id Command    Argument
141003 16:30:03     1 Query     show variables like ‘%gener%‘
141003 16:30:09     1 Query     select count(*) from tempdb.tb1
141003 16:31:00     1 Query     show variables like ‘log_output‘
141003 17:00:48     1 Query     set global log_output=‘TABLE‘  #通用查询日志输出到文件仅仅记录到全局变量的修改

--mysql.general_log记录了通用查询日志的信息
[email protected][(none)]> desc mysql.general_log;
+--------------+------------------+------+-----+-------------------+-----------------------------+
| Field        | Type             | Null | Key | Default           | Extra                       |
+--------------+------------------+------+-----+-------------------+-----------------------------+
| event_time   | timestamp        | NO   |     | CURRENT_TIMESTAMP | on update CURRENT_TIMESTAMP |
| user_host    | mediumtext       | NO   |     | NULL              |                             |
| thread_id    | int(11)          | NO   |     | NULL              |                             |
| server_id    | int(10) unsigned | NO   |     | NULL              |                             |
| command_type | varchar(64)      | NO   |     | NULL              |                             |
| argument     | mediumtext       | NO   |     | NULL              |                             |
+--------------+------------------+------+-----+-------------------+-----------------------------+

--从通用查询日志表里查看通用查询日志的内容
[email protected][(none)]> select thread_id,command_type,argument from mysql.general_log;
+-----------+--------------+---------------------------------------------------------------+
| thread_id | command_type | argument                                                      |
+-----------+--------------+---------------------------------------------------------------+
|         1 | Query        | show variables like ‘log_output‘                              |
|         1 | Query        | select * from tempdb.tb1                                      |
|         1 | Query        | desc mysql.general_log                                        |
|         1 | Query        | select thread_id,command_type,argument from mysql.general_log |
+-----------+--------------+---------------------------------------------------------------+

[email protected][(none)]> show variables like ‘log_output‘;
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| log_output    | TABLE |
+---------------+-------+

--使用FILE,TABLE 2者混合输出通用日志
[email protected][(none)]> set global log_output=‘file,table‘;
Query OK, 0 rows affected (0.00 sec)

[email protected][(none)]> select @@global.log_output;
+---------------------+
| @@global.log_output |
+---------------------+
| FILE,TABLE          |
+---------------------+

[email protected][(none)]> insert into tempdb.tb1 values(2,‘robinson‘);
Query OK, 1 row affected (0.06 sec)

[email protected][(none)]> commit;
Query OK, 0 rows affected (0.01 sec)

--验证结果,表和文件里边存在通用的日志记录
[email protected][(none)]> system tail /tmp/suse11b.log|grep robinson
141003 17:41:54     2 Query     insert into tempdb.tb1 values(2,‘robinson‘)
[email protected][(none)]> select thread_id,command_type,argument from mysql.general_log
    -> where argument like ‘%robinson%‘;
+-----------+--------------+------------------------------------------------------------------------+
| thread_id | command_type | argument                                                               |
+-----------+--------------+------------------------------------------------------------------------+
|         2 | Query        | insert into tempdb.tb1 values(2,‘robinson‘)                            |
|         2 | Query        | select thread_id,command_type,argument from mysql.general_log          |
|           |              |    where argument like ‘‘robinson‘‘                                    |
+-----------+--------------+------------------------------------------------------------------------+

d、关闭通用查询日志
--可以通过设置系统变量general_log来关闭通用查询日志,此时日志输出设置为FILE,TABLE
[email protected][(none)]> show variables like ‘log_output‘;
+---------------+------------+
| Variable_name | Value      |
+---------------+------------+
| log_output    | FILE,TABLE |
+---------------+------------+

[email protected][(none)]> set global general_log=off;
Query OK, 0 rows affected (0.01 sec)

[email protected][(none)]> show variables like ‘%gener%‘;
+------------------+------------------+
| Variable_name    | Value            |
+------------------+------------------+
| general_log      | OFF              |
| general_log_file | /tmp/suse11b.log |
+------------------+------------------+

[email protected][(none)]> delete from tempdb.tb1 where id=2;
Query OK, 1 row affected (0.12 sec)

[email protected][(none)]> commit;
Query OK, 0 rows affected (0.00 sec)

[email protected][(none)]> system tail -n 1 /tmp/suse11b.log
141003 17:45:13     2 Query     set global general_log=off

[email protected][(none)]> select thread_id,command_type,argument from mysql.general_log
    -> where argument like ‘%delete%‘;
Empty set (0.00 sec)

--从上面的演示可知,尽管我们设置了log_output为FILE,TABLE,但general_log为OFF,通用日志无任何记录产生

[email protected][(none)]> set global log_output=none;
Query OK, 0 rows affected (0.00 sec)

[email protected][(none)]> set global general_log=1;
Query OK, 0 rows affected (0.00 sec)

[email protected][(none)]> truncate table tempdb.tb1;
Query OK, 0 rows affected (0.01 sec)

[email protected][(none)]> system tail -n 1 /tmp/suse11b.log
Time                 Id Command    Argument

--通过上面的演示,在log_output=none,general_log=on的清下下无任何通用日志输出。

时间: 2024-10-12 10:47:36

MySQL 通用查询日志(General Query Log)的相关文章

MySQL中的日志类型(二)-General query log

简介 General query log记录客户端的连接和断开,以及从客户端发来的每一个SQL语句. 日志内容格式 General query log可以记录在文件中,也可以记录在表中,格式如下:在文件中会记录时间.线程ID.命令类型以及执行的语句示例如下:当日志记录在表中时,还会记录账号信息,示例如下: 记录时间 General Query Log在数据库接收到客户端发来的语句时进行记录.这意味着General Query Log的顺序可能和实际语句执行的顺序是不同的. 设置方法 Genera

MySQL:动态开启慢查询日志(Slow Query Log)

前言 在开发中,高效能的程序 也包括 高效能的查询,所以优化SQL也是程序员必要技能之一.要优化就必须要有慢日志记录才可以知道哪些查询慢,然后反向去修改 慢日志设置方式 写入文件 写入数据库 实践操作 方式一:写入文件 编辑my.conf 中修改 log_slow_queries 的日志地址 $ cd /etc/mysql $ cat my.cnf |grep slow  log_slow_queries = /data/logs/mysql/mysql-slow.log $ sudo /etc

MySQL 通用查询日志和慢查询日志分析

MySQL中的日志包括:错误日志.二进制日志.通用查询日志.慢查询日志等等.这里主要介绍下比较常用的两个功能:通用查询日志和慢查询日志. 1)通用查询日志:记录建立的客户端连接和执行的语句.2)慢查询日志:记录所有执行时间超过long_query_time秒的所有查询或者不使用索引的查询 (1)通用查询日志 在学习通用日志查询时,需要知道两个数据库中的常用命令: 1) show variables like '%version%'; mysql> show variables like '%ve

关于MySQL 通用查询日志和慢查询日志分析

MySQL中的日志包括:错误日志.二进制日志.通用查询日志.慢查询日志等等.这里主要介绍下比较常用的两个功能:通用查询日志和慢查询日志. 1)通用查询日志:记录建立的客户端连接和执行的语句. 2)慢查询日志:记录所有执行时间超过long_query_time秒的所有查询或者不使用索引的查询 (1)通用查询日志 在学习通用日志查询时,需要知道两个数据库中的常用命令: 1) showvariables like '%version%'; 效果图如下: 上述命令,显示当前数据库中与版本号相关的东西.

MySQL 慢查询日志(Slow Query Log)

同大多数关系型数据库一样,日志文件是MySQL数据库的重要组成部分.MySQL有几种不同的日志文件,通常包括错误日志文件,二进制日志,通用日志,慢查询日志,等等.这些日志可以帮助我们定位mysqld内部发生的事件,数据库性能故障,记录数据的变更历史,用户恢复数据库等等.本文主要描述通用查询日志. 1.MySQL日志文件系统的组成   a.错误日志:记录启动.运行或停止mysqld时出现的问题.   b.通用日志:记录建立的客户端连接和执行的语句.   c.更新日志:记录更改数据的语句.该日志在M

mysql慢查询Slow Query Log和未使用索引(Not Using Indexes)查询配置和使用

mysql的“慢查询”指的是超过了允许的最大查询时间(long_query_time)的sql语句,而“未使用索引”查询顾名思义就是查询语句没有使用到索引的sql语句. 慢查询配置和使用 在msyqld的启动配置文件或命令行参数中增加以下参数 long_query_time=1 log-slow-queries=/var/mysql/logs/slow.log long_query_time参数表示的是慢查询的度量时间,单位是秒,最小是1,缺省值是10,凡是执行时间超过long_query_ti

MySQL二进制日志(binary log)总结

本文出处:http://www.cnblogs.com/wy123/p/7182356.html (保留出处并非什么原创作品权利,本人拙作还远远达不到,仅仅是为了链接到原文,因为后续对可能存在的一些错误进行修正或补充,无他) 今天无意中发现了一个云栖社区举行的MySQL“第一季:挑战玄惭之 慢SQL性能优化赛”,在测试服务器上执行其测试脚本写入数据的时候报错提示如下,Multi-statement transaction required more than 'max_binlog_cache_

MySQL的日志

Error log:错误日志 Query Log:查询日志    general query log/slow query log:超过设定时间(long_query_time)或者没走索引的语句 Binary Log:二进制日志,记录数据被修改的相关信息 开启查询日志(一般不开): mysql> show variables like 'general_log%'; +------------------+---------------------------+ | Variable_name

MySQL各种日志介绍

目录 1.日志分类 2.各种日志介绍 1.日志分类 错误日志 查询日志 慢查询日志 事务日志 二进制日志 中继日志 2.各种日志介绍 2.1.错误日志 默认时错误日志的存放位置在数据目录中,名称为"server_name.err" 错误日志记录的事件: a).服务器启动关闭过程中的信息 b).服务器运行过程中的错误信息 c).事件调试器运行一个事件时间生的信息 d).在从服务器上启动从服务器进程时产生的信息 查看与日志相关的变量: mysql> SHOW GLOBAL VARIA