Dec 292010
Enable MySQL binary log (bin log)
Answer:
The MySQL binary log contains the changes to the database in binary log format. They are useful for
- Database recovery
- Replication
To enable it, edit the MySQL configurations, e.g. /etc/my.cnf
..
log-bin
..
Don't forget to restart MySQL to take effect.
# /sbin/service mysqld restart