To enable MySQL binary log you need to alter the mysql configuration file "my.cnf". The file os located on Linux systems at /etc/my.cnf.
So just add the following line to you conf file. "log-bin=mysql-bin" under the [mysqld] section:
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql
# Disabling symbolic-links is recommended to prevent assorted security risks <<
symbolic-links=0
#enable bin-log <<
log-bin=mysql-bin
[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid