Migrate Ubuntu Server

5

We have a Ubuntu Server 13 physical and we want to do a clean installation, and migrate everything to the new server 16.04 . Is there a tool that allows you to migrate everything easily? That is, they can be moved:

  • Network Settings.
  • Crontab.
  • Folder Permissions.
  • www.
  • MySql Databases
  • Etc.

In case there is no tool, what procedure would be the correct one to move the folders and that the company is not affected by this procedure?

    
asked by Erick Preciado 26.10.2016 в 16:23
source

3 answers

1

The best way to do clean migration is to install your Operating System again. I would recommend you virtualize. The reason is for the flexibility. But that does not solve the migration issue. It uses KVM which is very good. Then create a virtual machine Ubuntu Server 16.04 LTS and install your applications one by one. Document the entire process. It will help you for future migrations. Save your configuration files. A magic tool that does this whole process does not exist. The best way is to urge it and see if everything works for you.

When finished. Use the new Server but do not erase the old, until a few weeks pass and you see that everything works fine.

    
answered by 29.11.2016 в 02:17
0

One way to do it without a tool would be to copy all the configuration files from the old server to the new one by one or based on scripts.

for example with the network:

  • an option would be to copy the file / etc / network / interfaces 1 .
  • create a script with the configuration of the network 2
answered by 31.10.2016 в 20:49
0

First of all, thank you very much for responding, about 20 days ago we did the migration, basically what we did was make a copy preserving the permissions using "cp -r" the basic folders like: bin, etc, home, usr, var .

To migrate users we use the information of this pagina .

    
answered by 16.12.2016 в 21:36