1

Can someone please tell me how to do a Simple Database Backup for MySQL Database on diff host (computer). I am trying to move my database from one host (server) to a new host (server)

6
  • 2
    have a look at the mysqldump command Commented Dec 5, 2012 at 20:27
  • I don't see how to pick a host. Commented Dec 5, 2012 at 20:30
  • Which MySQL version are you using? Commented Dec 5, 2012 at 20:33
  • good question.. how can I find out Commented Dec 5, 2012 at 20:38
  • SHOW VARIABLES LIKE "%version%"; Commented Dec 5, 2012 at 20:39

1 Answer 1

1

If you just need to transfer a database between servers, using phpMyAdmin, you can use Export on the database on the source to generate a .SQL script, and then use Import on the target server to transfer it.

Alternatively, if the database is too big, you could use something like SQLDumper.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.