If your replication fails, you better can start over again, instead of troubleshooting the problem.
1) On the Primary MySQL server FLUSH TABLES WITH READ LOCK;
2) Dump all databases mysqldump -uusername --all-databases -p | gzip -2 > dump.sql.gz
3) On Primary MySQL server UNLOCK TABLES;
// Not necessarily to be CAPS.
4) scp
your file to the Secondary MySQL server.
5) slave stop;
on the secondary MySQL server.
6) On Secondary MySQL server import dump.sql.gz as follo:
gunzip < dump.sql.gz | mysql -uusername -password
7) If you've set your MASTER
configuration correctly, you can start slave as
start slave;
8) Show the status of slave SHOW SLAVE STATUS\G;
Check for a specific error code and update your answer to provide more details. if possible