I am trying to replicate my mysql database using the master slave replication. On the slave machine, when i try to run this query, i get stuck.

mysqldump -h 10.124.2.34 bank --password='' --user='root' | mysql bank --password='' --user='root'

Any idea what I am doing wrong?

link|improve this question

20% accept rate
Do you get an error? – Michiel van Vaardegem Feb 20 at 8:20
What do you mean by "I get stuck"? The command never completes? You do not know what to do next? – wallyk Feb 20 at 8:20
I ran this command: mysqldump -h 10.128.2.34 bank --user=root | mysql bank --user=root; and i am getting a syntax error. Do you know what is wrong? – codingNewbie Feb 20 at 8:28
The master and slave currently use the same username (root) and no password. – codingNewbie Feb 20 at 8:28
feedback

1 Answer

Try this :

Total DB dump :

mysqldump -uroot -h -p pwd -P db_name | mysql -uroot -p pwd -P db_name

Only Table copy

mysqldump -uroot -h -p pwd -P db_name | mysql -uroot -p pwd -P db_name

It's working for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.