Difference between revisions of "Migration of servers to Proxmox VE"

From Proxmox VE
Jump to navigation Jump to search
m
(added Move OpenVZ container to Proxmox VE)
Line 59: Line 59:
  
 
=XEN to Proxmox VE (KVM)=
 
=XEN to Proxmox VE (KVM)=
tbd.
+
XEN also uses qemu disk format, so it should work in the same manner as described under "VMware to Proxmox VE (KVM)".
 +
 
 +
=Move OpenVZ container to Proxmox VE=
 +
You can move existing OpenVZ containers (container=VE=VPS) with vzmigrate or vzdump:
 +
* Use vzmigrate offline migration to move your container to Proxmox VE
 +
* Use vzdump to restore from a backup
 +
 
 +
After you moved your container you need to add the following line to the corresponding config file (see /etc/vz/conf/xyz.conf):
 +
<pre>nano /etc/vz/conf/xyz.conf</pre>
 +
 
 +
Add the following line:
 +
<pre>ORIGIN_SAMPLE="pve.auto"</pre>
 +
 
 +
Now you can manage resource settings on the Proxmox VE management interface.  
  
 
=Physical server (or XEN or VMware or other) to Proxmox VE (Container)=
 
=Physical server (or XEN or VMware or other) to Proxmox VE (Container)=
tbd.
+
tbd, see [http://wiki.openvz.org/Physical_to_container Physical_to_container]
see [http://wiki.openvz.org/Physical_to_container Physical_to_container]
 
 
[[Category: HOWTO]]
 
[[Category: HOWTO]]

Revision as of 14:31, 9 May 2008

Introduction

You can migrate existing servers to Proxmox VE.

Physical server to Proxmox VE (KVM)

There are free tools (like VMware Converter) available to migrate a physical host to VMware. So the first step is to migrate the physical server to a VMware image. The second step is to follow the howto "VMware to Proxmox VE (KVM)".

VMware to Proxmox VE (KVM)

This howto describes the migration of a Windows 2003 Server (or Windows XP) from VMware to Proxmox VE (KVM).

Prepare the Windows operating system

Before you begin make a copy of the VMware image.

Remove VMware tools

Start the Windows virtual machine on VMware and remove the VMware tools via the Windows control panel. Reboot.

Enable IDE in the registry

  • Start the Windows virtual machine on VMware and execute the mergeide.reg (see Microsoft KB article for details). Now the registry is changed that your Windows can boot from IDE, necessary for KVM.
  • Shutdown Windows.

Prepare the disk file

My disk file used for this howto: win2003.vmdk

  • Change your VMDK disk file with vmware-vdiskmanager.exe to a single growable file (vmware-vdiskmanager.exe is located in your VMware installation path, e.g. "C:\Program Files\VMware\VMware Server")
vmware-vdiskmanager -r win2003.vmdk -t 0 win2003-pve.vmdk
  • Copy the win2003-pve.vmdk to your Proxmox VE server into the following dir: /var/lib/vz/images (I used WinSCP as I worked on a Windows desktop)
  • Change the win2003-pve.vmdk file to qemu format
qemu-img convert -f vmdk win2003-pve.vmdk -O qcow2 win2003-pve.qcow2

Create a new KVM Virtual Machine

  • Create a new KVM Virtual Machine via the Proxmox VE management interface - do not start.
  • Edit the corresponding config file on the console to replace/add the created win2003-pve.qcow2 as hda:
nano /etc/qemu-server/123.conf

OLD:

ostype: w2k3
network: model=virtio,tap
memory: 512
onboot: 0
cdrom: kvm-driver-disc-20080318.iso
name: win2003-migrate
hda: /var/lib/vz/images/vm-123-default.qcow2

NEW:

ostype: w2k3
network: model=virtio,tap
memory: 512
onboot: 0
cdrom: kvm-driver-disc-20080318.iso
name: win2003-migrate
hda: /var/lib/vz/images/win2003-pve.qcow2
  • Start the new Virtual Machine via the management interface
  • First boot takes some time as some drives has to be loaded
  • Do not forget to install Paravirtualized_Network_Drivers_for_Windows
  • If you need to add more disk, just proceed in the same way and add the disk file as hdb, hdc, ... to the /etc/qemu-server/123.conf config file.
  • Finished!

For comments or problems please post to the Proxmox VE forum or to the mailing list

XEN to Proxmox VE (KVM)

XEN also uses qemu disk format, so it should work in the same manner as described under "VMware to Proxmox VE (KVM)".

Move OpenVZ container to Proxmox VE

You can move existing OpenVZ containers (container=VE=VPS) with vzmigrate or vzdump:

  • Use vzmigrate offline migration to move your container to Proxmox VE
  • Use vzdump to restore from a backup

After you moved your container you need to add the following line to the corresponding config file (see /etc/vz/conf/xyz.conf):

nano /etc/vz/conf/xyz.conf

Add the following line:

ORIGIN_SAMPLE="pve.auto"

Now you can manage resource settings on the Proxmox VE management interface.

Physical server (or XEN or VMware or other) to Proxmox VE (Container)

tbd, see Physical_to_container