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.
|
1
|
|
|
|
|
|
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 :)) |
||
|
|
|
|
Start mysql with the --log option:
or place the following in your my.cnf file:
Either one will log all queries to log_file_name. You can also log only slow queries using the |
||||||
|