Quote:
Originally Posted by Cracklefish
Is there any idiots guide to tell me how to migrate all the data from the ISPC3, mail, web, MySQL etc?
|
That's not that hard .. since all client data etc is in the database it makes it a lot easier nowadays to migrate to another server.
- Install a new fresh server with ispconfig3
- Go to the old server ..
- Make a complete databass dump ..
Code:
mysqladmin --all-databases > ~/database.sql
- Import it on the new server ..
Code:
mysql < database.sql
- Copy /var/www and /var/vmail from the old server to the new server.
that's about it.
it's not idiot proof i know, but it's almost weekend! ;-)
also i don't know if there is already a migrate script.
Maybe i'll write one some day..