I was referring this link to perform MySql master slave replication for a particular mysql database in my Windows server.
Its mentioned to write the following configuration in the my.ini file.
log-bin = /var/log/mysql/mysql-bin.log
binlog-do-db=exampledb
server-id=1
Since I am using a windows server I cannot use the above path for the log-bin attribute. So which is the log-bin path for mysql running in a windows server?
Thanks