I have one virtual box linux server which shows only command prompt... And I want to have that server files and Database to my another server... How can I achieve that?
Asked
Active
Viewed 188 times
1 Answers
1
there are several options for start if use the same virtualization technology on the virtual box and the new server you could just create snapshot from your virtual box and than try to run that snapshot on the new server. http://wiki.qemu.org/Documentation/CreateSnapshot
The other solution will be to transfer all of your data manually, for that you will need to:
- Export all your databases the corresponding tools for that type of database ( eg. mysqldump for MySQL server )
- Transfer all files from old to the new server using rsync
- Install the same software stack / control panels you've had on the virtual box on the new server.
- Recreate the FTP, MYSQL users and restore files from the transferred data into the same locations as on the virtual box
- Import the databases from the exported database files using the corresponding tools for that server.
This should do the trick :)

BlackHOST
- 171
- 7