1 articles tagged "server login"
- Copy MySQL database from one server to another remote server
Usually you run mysqldump to create database copy:
$ mysqldump -u user -p db-name > db-name.out
Copy db-name.out file using sftp/ssh to remote MySQL server:
$ scp db-name.out user@remote.box.com:/backup
Restore database at remote server (login over ssh):
$ mysql -u user -p db-name < db-name.out
How do I copy a MySQL database from one computer/server to another?
Short answer is you can [...]
Viewing 1-1 of 1 posts. ( see all popular tags )


Recent Comments
Today ~ 4 Comments
Today ~ 164 Comments
08/24/2006 01:56 pm ~ 11 Comments
Today ~ 4 Comments
Today ~ 5 Comments