Could we help you? Please click the banners. We are young and desperately need the money
[mysqld] log-bin=mysql-bin server-id=1 innodb_flush_log_at_trx_commit=1 sync_binlog=1
[mysqld] server-id=2
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', (info von Oben) -> MASTER_LOG_POS=recorded_log_position; (info von Oben)
mysql> START SLAVE;
Der Status kann mit
mysql> SHOW slave STATUS;
abgefragt warden. Als Status sollte „Waiting for Master to send event” stehen.