I have doubts in setting up the slave.
In the slave mysql
I need to do the following
CHANGE MASTER TO
> MASTER_HOST='masteripaddress',
> MASTER_USER='repl',
> MASTER_PASSWORD='password',
> MASTER_LOG_FILE='mysql-bin.000001',
> MASTER_LOG_POS=98;
start slave
how will i get these values from the master in runtime and pass them to slave machine.
Thanks in advance