Editing Migration from Linux-VServer to OpenVZ

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 113: Line 113:
 
=== Updating different configurations  ===
 
=== Updating different configurations  ===
  
Get the existing guest OSs to the right place:
+
Move the existing guest OSs to the right place:
  
 
   # cd /vz
 
   # cd /vz
Line 119: Line 119:
 
   # mkdir private/345
 
   # mkdir private/345
 
   # mv /vservers/v345 /vz/private/345
 
   # mv /vservers/v345 /vz/private/345
In Debian Lenny the path is /var/lib/vz/private/345 instead.
 
In any case it is a good idea to have the guest file system in a dedicated partition or lvm container (shown in the example below) and just mount it there
 
instead of moving:
 
  # mkdir /var/lib/vz/private/345
 
  # mount /dev/mapper/vg01-lvol5 /var/lib/vz/private/345
 
  
 
Now it is time for creating configuration files for OpenVZ container. Use the basic sample
 
Now it is time for creating configuration files for OpenVZ container. Use the basic sample
Line 130: Line 125:
 
   # cd /etc/sysconfig/vz-scripts
 
   # cd /etc/sysconfig/vz-scripts
 
   # cp ve-vps.basic.conf-sample 345.conf
 
   # cp ve-vps.basic.conf-sample 345.conf
In Debian Lenny the configuration is located in /etc/vz/conf/ , in this case type:
 
  # cd /etc/vz/conf
 
  # cp ve-vps.basic.conf-sample  345.conf
 
  
 
Now, let's set some parameters for the new container.
 
Now, let's set some parameters for the new container.
  
 
First, we need to tell which distro the container is running:
 
First, we need to tell which distro the container is running:
   # echo "OSTEMPLATE=\"fedora-core-4\"" >> 345.conf
+
   # echo "OSTEMPLATE="fedora-core-4" >> 345.conf
  # echo "OSTEMPLATE=\"debian\"" >> 345.conf   (for Debian Lenny)
 
  
 
Then we set a few more parameters:
 
Then we set a few more parameters:
Line 178: Line 169:
  
 
== Issues ==
 
== Issues ==
 
=== Starting ===
 
 
If starting fails with a message '''Unable to start init, probably incorrect template''' either the /sbin/init file is missing in the guest file system, or just not executable. Or the guest file system is completely absent or dislocated. The proper path where you must place is specified in the vz.conf file, namely the parameter VE_PRIVATE. For Debian this file can be found in /etc/vz.
 
  
 
=== Networking ===
 
=== Networking ===
Line 188: Line 175:
  
 
The vserver-originating containers do not initialize network at all. Thus one needs to use following command to enable networking start (inside of the migrated container):
 
The vserver-originating containers do not initialize network at all. Thus one needs to use following command to enable networking start (inside of the migrated container):
 
+
cd /etc/rcS.d
  update-rc.d networking defaults
+
  ln -s ../init.d/networking S40networking
  
 
==== Migrating your VServer Shorewall setup ====
 
==== Migrating your VServer Shorewall setup ====
Line 216: Line 203:
 
Additionally, Ubuntu based vservers have the udev package installed which prevents access to the console in openvz. This error message is an example of the problem:
 
Additionally, Ubuntu based vservers have the udev package installed which prevents access to the console in openvz. This error message is an example of the problem:
  
# vzctl enter 345
+
<code>
enter into CT 345 failed
+
# vzctl enter 101
Unable to open pty: No such file or directory
+
enter into CT 101 failed
 +
Unable to open pty: No such file or directory
 +
</code>
  
 
The fix is to remove the udev package from the guest:
 
The fix is to remove the udev package from the guest:
  
 
+
<code>
# vzctl exec 345 'dpkg --force-depends --purge udev'
+
# vzctl exec 101 'dpkg --force-depends --purge udev'
(Reading database ... dpkg: udev: dependency problems, but removing anyway as you request:
+
(Reading database ... dpkg: udev: dependency problems, but removing anyway as you request:
  initramfs-tools depends on udev (>= 117-5).
+
initramfs-tools depends on udev (>= 117-5).
15227 files and directories currently installed.)
+
15227 files and directories currently installed.)
Removing udev ...
+
Removing udev ...
Purging configuration files for udev ...
+
Purging configuration files for udev ...
dpkg - warning: while removing udev, directory `/lib/udev/devices/net' not empty so not removed.
+
dpkg - warning: while removing udev, directory `/lib/udev/devices/net' not empty so not removed.
dpkg - warning: while removing udev, directory `/lib/udev/devices' not empty so not removed.
+
dpkg - warning: while removing udev, directory `/lib/udev/devices' not empty so not removed.
 
+
</code>
  
 
Now restart the container, you should now be able to use the console.
 
Now restart the container, you should now be able to use the console.
  
 +
<code>
 +
# vzctl restart 101
 +
Restarting container
 +
...
 +
<SNIP>
 +
...
 +
Container start in progress...
  
# vzctl restart 345
+
# vzctl enter 101
Restarting container
+
entered into CT 101
...
+
root@test:/#
  <SNIP>
+
</code>
...
 
Container start in progress...
 
 
 
# vzctl enter 345
 
entered into CT 345
 
root@test:/#
 
  
 
=== /proc ===
 
=== /proc ===

Please note that all contributions to OpenVZ Virtuozzo Containers Wiki may be edited, altered, or removed by other contributors. If you don't want your writing to be edited mercilessly, then don't submit it here.
If you are going to add external links to an article, read the External links policy first!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)

Template used on this page: