Tengo mi servidor Master en Windows XP.
 
MySQL 5.5:
 
Configure el archivo my.ini
 
log-bin=mysql-bin  
server-id = 1      
binlog-do-db=base_dedatos
replicate-do-db=base_de_datos
innodb_flush_logs_at_trx_commit=1
sync-binlog=1
 
Le di a un usuario el 
 
GRANT REPLICATION SLAVE ON *.* TO 'user'@'%' INDENTIFIED BY 'contraseña'
 
y en el esclavo configure el my.cnf asi:
 
[mysqld]
skip-innodb
server-id=1311086509
 
Configure un usuario con los mismos datos que en el master.. user, contraseña y le di tambien todos los priveligios etc por las dudas.
 
Y la replicacion parece no funcionar, este es el SHOW SLAVE STATUS:
 
 
 SHOW SLAVE STATUS\G
*************************** 1. row ***************************
             Slave_IO_State: Connecting to master
                Master_Host: <***.***.***.***>
                Master_User: <rpl>
                Master_Port: 3306
              Connect_Retry: 60
            Master_Log_File: <mysql-bin.000004>
        Read_Master_Log_Pos: 98
             Relay_Log_File: vps-relay-bin.000004
              Relay_Log_Pos: 98
      Relay_Master_Log_File: <mysql-bin.000004>
 Slave_IO_Running: No
          Slave_SQL_Running: Yes
            Replicate_Do_DB:
        Replicate_Ignore_DB:
         Replicate_Do_Table:
     Replicate_Ignore_Table:
    Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
                 Last_Errno: 0
                 Last_Error:
               Skip_Counter: 0
        Exec_Master_Log_Pos: 98
            Relay_Log_Space: 98
            Until_Condition: None
             Until_Log_File:
              Until_Log_Pos: 0
         Master_SSL_Allowed: No
         Master_SSL_CA_File:
         Master_SSL_CA_Path:
            Master_SSL_Cert:
          Master_SSL_Cipher:
             Master_SSL_Key:
      Seconds_Behind_Master: NULL
1 row in set (0.01 sec)
 
 
Como veran la opcion: Slave_IO_Running: No esta en no, y deberia estar en YES.
 
Alguna idea de como arreglarlo???
 
Gracias 
  
 

