hai sashi i have one main problem.
problem is master - slave replication is working fine but it works 30 mins to 1 hr
then it is not working.
why because is MASTER_LOG_FILE='mysql-bin.000001' this file is changing frequently
like 1hr
it shows MASTER_LOG_FILE='mysql-bin.000001'
after that
MASTER_LOG_FILE='mysql-bin.000002'
after some time it shows
MASTER_LOG_FILE='mysql-bin.000099'
this is the main problem
how do fix the master_log_file?
and if possible u can see following website
http://docs.hp.com/en/5991-7431/ar01s05.html
these are the one of the steps.
mysql> CHANGE MASTER TO
-> MASTER_HOST='master_host_name',
-> MASTER_USER='replication_user_name',
-> MASTER_PASSWORD='replication_password',
-> MASTER_LOG_FILE='recorded_log_file_name',
-> MASTER_LOG_POS=recorded_log_position;
For this example, enter the following commands:
mysql> CHANGE MASTER TO
-> MASTER_HOST='master.test',
-> MASTER_USER='osmusr',
-> MASTER_PASSWORD='osmpass',
-> MASTER_LOG_FILE='mysql-bin.000001',
-> MASTER_LOG_POS=1678;
thanks