I setup MySQL master slave replication, but none of the databases, tables, and data is being copied over to the slave from the master.
Here is the relevant configuration on the master:
server-id=1
log-bin=mysql-bin
sync_binlog=1
expire_logs_days=7
And here is the relevant slave configuration:
server-id=2
relay-log=mysqld-relay-bin
report-host=myhost.domain.com
I am assuming I don't need to manually import all the data into the slave, I assume, the master automatically syncs the information correct?