Yesterday I was asked for help concerning a replication problem
with one of our test systems. My colleague had already installed
a fresh dump he had created with mysqldump ...
--master-data
. The dump looked ok and contained a master
configuration statement:
... CHANGE MASTER TO MASTER_LOG_FILE='master-bin.000127',MASTER_LOG_POS=4462223; ...
The slave was provided with the correct user, password and host
name for this master. Nevertheless issuing a START
SLAVE
did not work. In the slave .err
file we
found this:
... 050327 20:54:51 [ERROR] Error reading packet from server: Client requested master to start replication from impossible position (server_errno=1236) 050327 20:54:51 [ERROR] Got fatal error 1236: 'Client requested master to start replication from impossible position' from master when reading data from binary log ...
After some fiddling around and searching the net for …
[Read more]