-1

I need to trace the MYSQL Database. Is there any way to find all the log details that happened in the database through a query or file. I want to the view the transaction history any time I wish. Please help me.

Thanks Divya

1 Answers1

0

You can edit your MySQL configuration file by adding the following to the mysqld section of the config file:

[mysqld]
...
general_log = on
general_log_file = /var/log/mysql.log

This will log all transactions to /var/log/mysql.log after you restarted the daemon.

EDIT: this question is probably a duplicate of How to enable MySQL Query Log?

gogaz
  • 2,323
  • 2
  • 23
  • 31