|
Search:
Advanced search
|
Browse by category:
|
Moving MySQL database to another server |
|||||
It is possible to move MySQL database to another server.You can copy the database files directly from one server to another but this is quite risky. The best option is to use mysqldump to dump the tables you're interested in or use 'mysqldump -A' to dump the entire database. You can write the output of that command to a file and use 'mysql -u root [databasename] < mysqldumpfile' to load the data from the text file.
|
|||||


