Editing Quick installation (legacy)

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 1: Line 1:
{{Warning|This article describes legacy version of OpenVZ. For current version, see [[Quick installation]].}}
+
This document briefly describes the steps needed to install OpenVZ on your machine.
  
<!--T:1-->
+
This document is also available in the following languages: [http://forum.openvz.org/index.php?t=tree&amp;goto=35&amp;#msg_35 French], [http://forum.openvz.org/index.php?t=tree&amp;goto=1805&amp;#msg_1805 German].
This document briefly describes the steps needed to install '''legacy''' OpenVZ on your '''RHEL 6''' (CentOS 6, Scientific Linux 6) machine.
 
  
<!--T:2-->
+
OpenVZ consists of a kernel, user-level tools, and VE templates. This guide tells how to install the kernel and the tools.
For '''Debian''' based systems, please see [[Installation on Debian]].
 
  
<!--T:3-->
+
== Requirements ==
{{Out|A commercial version of OpenVZ is available, which simplifies installation with a single disk as well as supports networked installation using PXE boot. To learn more about Virtuozzo and request a free trial, please see https://virtuozzo.com/openvz/}}
+
This guide assumes you are running recent release of Fedora Core (like FC5) or RHEL/CentOS 4. Currently, OpenVZ kernel tries to support the same hardware that Red Hat kernels support. For full hardware compatibility list, see [http://www.virtuozzo.com/en/products/virtuozzo/hcl/ Virtuozzo HCL].
  
== Requirements == <!--T:5-->
+
== Kernel installation ==
  
<!--T:6-->
+
{{Note|In case you want to recompile the kernel yourself rather than use the one provided by OpenVZ, see [[kernel build]].}}
This guide assumes you are running '''RHEL (CentOS, Scientific Linux) 6''' on your system. Currently, this is a recommended platform to run OpenVZ on.
 
  
=== /vz file system === <!--T:7-->
+
Get the kernel binary RPM from the [http://openvz.org/download/kernel/ Download » Kernel] page, or directly from [http://download.openvz.org/kernel/ download.openvz.org/kernel], or from one of its [[Download mirrors|mirrors]]. You need only one kernel RPM so please [[Kernel flavors|choose the appropriate one]] depending on your hardware.
  
<!--T:8-->
+
Next, install the kernel RPM you chose:
It is recommended to use a separate partition for containers (by default '''/vz''') and format it to '''ext4'''.
 
  
=== yum pre-setup === <!--T:9-->
+
<pre>
 +
rpm -ihv ovzkernel-name*.rpm
 +
</pre>
  
<!--T:10-->
+
{{Note|<tt>rpm -U</tt> (where <tt>-U</tt> stands for ''upgrade'') should '''not''' be used, otherwise all currently installed kernels will be uninstalled.}}
Download [https://download.openvz.org/openvz.repo openvz.repo] file and put it to your <code>/etc/yum.repos.d/</code> repository:
 
  
<!--T:11-->
+
== Configuring the bootloader ==
<pre><nowiki>wget -P /etc/yum.repos.d/ https://download.openvz.org/openvz.repo</nowiki></pre>
 
  
<!--T:12-->
+
In case GRUB is used as the boot loader, it will be configured automatically: lines similar to these will be added to the <tt>/boot/grub/grub.conf</tt> file:
Import OpenVZ GPG key used for signing RPM packages:
 
  
<!--T:13-->
+
<pre>
<pre><nowiki>rpm --import http://download.openvz.org/RPM-GPG-Key-OpenVZ</nowiki></pre>
+
title Fedora Core (2.6.8-022stab029.1)
 +
      root (hd0,0)
 +
      kernel /vmlinuz-2.6.8-022stab029.1 ro root=/dev/sda5 quiet rhgb vga=0x31B
 +
      initrd /initrd-2.6.8-022stab029.1.img
 +
</pre>
 +
Change <tt>Fedora Core</tt> to <tt>OpenVZ</tt> (just for clarity reasons, so the OpenVZ kernels will not be mixed up with non OpenVZ ones). Remove extra arguments from the kernel line, leaving only the <tt>root=...</tt> parameter. The modifed portion of <tt>/etc/grub.conf</tt> should look like this:
  
To make sure that you are downloading tamper free versions of the signed packages you should verify the fingerprint of the key you imported into the rpm key database as described on the [[Package signatures]] page.
+
<pre>
 
+
title OpenVZ (2.6.8-022stab029.1)
== Kernel installation == <!--T:14-->
+
        root (hd0,0)
 +
        kernel /vmlinuz-2.6.8-022stab029.1 ro root=/dev/sda5
 +
        initrd /initrd-2.6.8-022stab029.1.img
 +
</pre>
  
<!--T:15-->
+
== Configuring ==
Limited OpenVZ functionality is supported when you run a recent 3.x kernel (check [[vzctl for upstream kernel]], so OpenVZ kernel installation is optional but still recommended.
 
  
<!--T:16-->
 
# yum install vzkernel
 
 
== System configuration == <!--T:17-->
 
 
<!--T:18-->
 
{{Note|With vzctl 4.4 or newer there is no need to do manual configuration. Skip to [[#Tools_installation]].}}
 
 
<!--T:19-->
 
 
Please make sure the following steps are performed before rebooting into OpenVZ kernel.
 
Please make sure the following steps are performed before rebooting into OpenVZ kernel.
  
=== sysctl === <!--T:20-->
+
=== sysctl ===
  
<!--T:21-->
+
There is a number of kernel parameters that should be set for OpenVZ to work correctly. These parameters are stored in <tt>/etc/sysctl.conf</tt> file. Here is the relevant part of the file; please edit it accordingly.
There are a number of kernel parameters that should be set for OpenVZ to work correctly. These parameters are stored in <tt>/etc/sysctl.conf</tt> file. Here are the relevant portions of the file; please edit accordingly.
 
  
<!--T:22-->
 
 
<pre>
 
<pre>
 
# On Hardware Node we generally need
 
# On Hardware Node we generally need
 
# packet forwarding enabled and proxy arp disabled
 
# packet forwarding enabled and proxy arp disabled
 
net.ipv4.ip_forward = 1
 
net.ipv4.ip_forward = 1
net.ipv6.conf.default.forwarding = 1
 
net.ipv6.conf.all.forwarding = 1
 
 
net.ipv4.conf.default.proxy_arp = 0
 
net.ipv4.conf.default.proxy_arp = 0
 
<!--T:23-->
 
 
# Enables source route verification
 
# Enables source route verification
 
net.ipv4.conf.all.rp_filter = 1
 
net.ipv4.conf.all.rp_filter = 1
 
<!--T:24-->
 
 
# Enables the magic-sysrq key
 
# Enables the magic-sysrq key
 
kernel.sysrq = 1
 
kernel.sysrq = 1
 
+
# TCP Explict Congestion Notification
<!--T:25-->
+
#net.ipv4.tcp_ecn = 0
# We do not want all our interfaces to send redirects
+
# we do not want all our interfaces to send redirects
 
net.ipv4.conf.default.send_redirects = 1
 
net.ipv4.conf.default.send_redirects = 1
 
net.ipv4.conf.all.send_redirects = 0
 
net.ipv4.conf.all.send_redirects = 0
 
</pre>
 
</pre>
  
=== SELinux === <!--T:26-->
+
=== SELinux ===
 +
 
 +
SELinux should be disabled. To that effect, put the following line to <code>/etc/sysconfig/selinux</code>:
 +
<pre>
 +
SELINUX=disabled
 +
</pre>
 +
 
 +
=== Conntracks ===
 +
 
 +
In the stable OpenVZ kernels (those that are 2.6.8-based) netfilter connection tracking for [[VE0]] is disabled by default. If you have a stateful firewall enabled on the host node (it is there by default) you should either disable it, or enable connection tracking for [[VE0]].
 +
 
 +
To enable conntracks for VE0, add the following line to <code>/etc/modules.conf</code> file:
 +
<pre>
 +
options ip_conntrack ip_conntrack_enable_ve0=1
 +
</pre>
  
<!--T:27-->
+
{{Note|in kernels later than 2.6.8, connection tracking is enabled by default}}
SELinux should be disabled. Put <code>SELINUX=disabled</code> to <code>/etc/sysconfig/selinux</code>:
 
  
<!--T:28-->
+
== Rebooting into OpenVZ kernel ==
echo "SELINUX=disabled" > /etc/sysconfig/selinux
 
  
== Tools installation == <!--T:29-->
+
Now reboot the machine and choose "OpenVZ" on the boot loader menu. If the OpenVZ kernel has been booted successfully, proceed to installing the user-level tools for OpenVZ.
  
<!--T:30-->
+
== Installing the utilities ==
{{Out|Before installing tools, please read about [[vzstats]] and opt-out if you don't want to help the project.}}
 
  
<!--T:31-->
+
OpenVZ needs some user-level tools installed. Those are:
OpenVZ needs some user-level tools installed:
 
  
<!--T:32-->
+
; vzctl
# yum install vzctl vzquota ploop
+
:   A utility to control OpenVZ VPSs (create, destroy, start, stop, set parameters etc.)
 +
; vzquota
 +
:    A utility to manage quotas for VPSs. Mostly used indirectly (by vzctl).
  
== Reboot into OpenVZ == <!--T:33-->
+
Download the binary RPMs of these utilities from [http://openvz.org/download/utils/ Download » Utils], or directly from [http://download.openvz.org/utils/ download.openvz.org/utils], or from one of its [[Download mirrors|mirrors]]. Install them:
  
<!--T:34-->
+
<pre>
Now reboot the machine and choose "OpenVZ" on the boot loader menu (it should be default choice).
+
rpm -Uhv vzctl*.rpm vzquota*.rpm
 +
</pre>
 +
 
 +
If rpm complains about unresolved dependencies, you'll have to satisfy them first, then repeat the installation.
 +
 
 +
When all the tools are installed, start the OpenVZ subsystem.
 +
 
 +
== Starting OpenVZ ==
 +
 
 +
As root, execute the following command:
 +
 
 +
<pre>
 +
/sbin/service vz start
 +
</pre>
  
== Download OS templates == <!--T:35-->
+
This will load all the needed OpenVZ kernel modules. This script should also start all the VPSs marked to be auto-started on machine boot (there aren't any yet).
  
<!--T:36-->
+
During the next reboot, this script should be executed automatically.
An OS template is a Linux distribution installed into a container
 
and then packed into a gzipped tarball. Using such a cache, a new container
 
can be created in a minute.
 
  
<!--T:37-->
+
== Next steps ==
Download precreated template caches from [http://openvz.org/download/template/cache Downloads » Templates » Precreated], or directly from [http://download.openvz.org/template/precreated/ download.openvz.org/template/precreated], or from one of the [[Download mirrors|mirrors]]. Put those tarballs '''as-is (no unpacking needed)''' to the <tt>/vz/template/cache/</tt> directory.
 
  
== Next steps == <!--T:38-->
+
OpenVZ is now set up on your machine. To load OpenVZ kernel by default, edit the default line in the /boot/grub/grub.conf file to point to the OpenVZ kernel. For example, if the OpenVZ kernel is the first kernel mentioned in the file, put it as default 0. See man grub.conf for more details.
  
<!--T:39-->
+
The next step is to prepare the [[OS template]]: please continue to [[OS template cache preparation]] document.
OpenVZ is now set up on your machine. Follow on to [[basic operations in OpenVZ environment]] document.
 
  
 
[[Category: Installation]]
 
[[Category: Installation]]
 
[[Category: HOWTO]]
 
[[Category: HOWTO]]

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)

Templates used on this page: