drvlxc.html.in 3.9 KB
Newer Older
1 2 3
<html>
  <body>
    <h1>LXC container driver</h1>
4 5 6 7
<p>
The libvirt LXC driver manages "Linux Containers".  Containers are sets of processes
with private namespaces which can (but don't always) look like separate machines, but
do not have their own OS.  Here are two example configurations.  The first is a very
8
light-weight "application container" which does not have its own root image.
9 10
</p>

11 12 13 14 15 16 17 18 19
    <h2><a name="project">Project Links</a></h2>

    <ul>
      <li>
        The <a href="http://lxc.sourceforge.net/">LXC</a> Linux
        container system
      </li>
    </ul>

20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
<h2>Cgroups Requirements</h2>

<p>
The libvirt LXC driver requires that certain cgroups controllers are
mounted on the host OS. The minimum required controllers are 'cpuacct',
'memory' and 'devices', while recommended extra controllers are
'cpu', 'freezer' and 'blkio'. The /etc/cgconfig.conf &amp; cgconfig
init service used to mount cgroups at host boot time. To manually
mount them use:
</p>

<pre>
 # mount -t cgroup cgroup /dev/cgroup -o cpuacct,memory,devices,cpu,freezer,blkio
</pre>

<p>
NB, the blkio controller in some kernels will not allow creation of nested
sub-directories which will prevent correct operation of the libvirt LXC
38
driver. On such kernels, it may be necessary to unmount the blkio controller.
39 40 41
</p>


42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
<h2>Environment setup for the container init</h2>

<p>
When the container "init" process is started, it will be given several useful
environment variables.
</p>

<dl>
<dt>LIBVIRT_LXC_NAME</dt>
<dd>The name assigned to the container by libvirt</dd>
<dt>LIBVIRT_LXC_UUID</dt>
<dd>The UUID assigned to the container by libvirt</dd>
<dt>LIBVIRT_LXC_CMDLINE</dt>
<dd>The unparsed command line arguments specified in the container configuration</dd>
</dl>


59 60 61 62
<h3>Example config version 1</h3>
<p></p>
<pre>
&lt;domain type='lxc'&gt;
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
  &lt;name&gt;vm1&lt;/name&gt;
  &lt;memory&gt;500000&lt;/memory&gt;
  &lt;os&gt;
    &lt;type&gt;exe&lt;/type&gt;
    &lt;init&gt;/bin/sh&lt;/init&gt;
  &lt;/os&gt;
  &lt;vcpu&gt;1&lt;/vcpu&gt;
  &lt;clock offset='utc'/&gt;
  &lt;on_poweroff&gt;destroy&lt;/on_poweroff&gt;
  &lt;on_reboot&gt;restart&lt;/on_reboot&gt;
  &lt;on_crash&gt;destroy&lt;/on_crash&gt;
  &lt;devices&gt;
    &lt;emulator&gt;/usr/libexec/libvirt_lxc&lt;/emulator&gt;
    &lt;interface type='network'&gt;
      &lt;source network='default'/&gt;
    &lt;/interface&gt;
    &lt;console type='pty' /&gt;
  &lt;/devices&gt;
81 82 83
&lt;/domain&gt;
</pre>

S
Serge Hallyn 已提交
84 85 86 87 88
<p>
In the &lt;emulator&gt; element, be sure you specify the correct path
to libvirt_lxc, if it does not live in /usr/libexec on your system.
</p>

89 90 91 92 93 94 95 96
<p>
The next example assumes there is a private root filesystem
(perhaps hand-crafted using busybox, or installed from media,
debootstrap, whatever) under /opt/vm-1-root:
</p>
<p></p>
<pre>
&lt;domain type='lxc'&gt;
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
  &lt;name&gt;vm1&lt;/name&gt;
  &lt;memory&gt;32768&lt;/memory&gt;
  &lt;os&gt;
    &lt;type&gt;exe&lt;/type&gt;
    &lt;init&gt;/init&lt;/init&gt;
  &lt;/os&gt;
  &lt;vcpu&gt;1&lt;/vcpu&gt;
  &lt;clock offset='utc'/&gt;
  &lt;on_poweroff&gt;destroy&lt;/on_poweroff&gt;
  &lt;on_reboot&gt;restart&lt;/on_reboot&gt;
  &lt;on_crash&gt;destroy&lt;/on_crash&gt;
  &lt;devices&gt;
    &lt;emulator&gt;/usr/libexec/libvirt_lxc&lt;/emulator&gt;
    &lt;filesystem type='mount'&gt;
      &lt;source dir='/opt/vm-1-root'/&gt;
      &lt;target dir='/'/&gt;
    &lt;/filesystem&gt;
    &lt;interface type='network'&gt;
      &lt;source network='default'/&gt;
    &lt;/interface&gt;
    &lt;console type='pty' /&gt;
  &lt;/devices&gt;
119 120 121 122 123 124
&lt;/domain&gt;
</pre>

<p>
In both cases, you can define and start a container using:</p>
<pre>
D
Daniel Veillard 已提交
125
virsh --connect lxc:/// define v1.xml
S
Serge Hallyn 已提交
126
virsh --connect lxc:/// start vm1
127 128 129
</pre>
and then get a console  using:
<pre>
S
Serge Hallyn 已提交
130
virsh --connect lxc:/// console vm1
131 132
</pre>
<p>Now doing 'ps -ef' will only show processes in the container, for
S
Serge Hallyn 已提交
133
instance.  You can undefine it using
134
</p>
S
Serge Hallyn 已提交
135 136 137
<pre>
virsh --connect lxc:/// undefine vm1
</pre>
138 139
  </body>
</html>