vote up 6 vote down star
1

Hi,

Is it possible for me to turn on audit logging on my mysql database?

I basically want to monitor all queries for an hour, and dump the log to a file.

flag

35% accept rate

2 Answers

vote up 1 vote down

You should be aware that mysql logging on really impacts performance, but it can be a wise thing to do.

I usually leave it on on the dev server (except when it drives us insane :))

link|flag
vote up 10 vote down

Start mysql with the --log option:

mysqld --log=log_file_name

or place the following in your my.cnf file:

log = log_file_name

Either one will log all queries to log_file_name.

You can also log only slow queries using the --log-slow-queries option instead of --log. By default, queries that take 10 seconds or longer are considered slow, you can change this by setting long_query_time to the number of seconds a query must take to execute before being logged.

link|flag
+1 for didn't know that. Used triggers instead. – Robert Gould Nov 20 '08 at 1:34
It should go without saying, but leaving this turned on in a production box winds up being non-entertaining very quickly. g – ceejayoz Nov 20 '08 at 2:40
If you have trouble enabling logging in this manner, doublt-check that the mysql user can write to the appropriate file location. – Jon Topper Nov 20 '08 at 16:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.