| How to upload/download huge MySQL database to/from web server |
Print this page
|
Usually, web developer use local computer like development web server and after testing upload code/database to hosting provider server. Also, sometimes is needed to move database from one hosting provider to another.
Below you can find instructions to move database from one hosting provider to another:
To find more information about mysql, mysqldump, mysqlimport, tar, gzip, gunzip command-line parameters just execute following shell commands:
shell> mysql --help
shell> mysqldump --help
shell> mysqlimport --help
shell> tar --help
shell> gzip --help
shell> gunzip --help
Or if you want to read manuals — execute following shell commands:
shell> man mysql
shell> man mysqldump
shell> man mysqlimport
shell> man tar
shell> man gzip
shell> man gunzip
Any size MySQL databases can be moved easily, using that technology. / Any republication of website content required direct track back link /
|