]> git.proxmox.com Git - pve-docs.git/blame - pct.adoc
pct: guest OS cfg: mention /etc/os-release
[pve-docs.git] / pct.adoc
CommitLineData
80c0adcb 1[[chapter_pct]]
0c6b782f 2ifdef::manvolnum[]
b2f242ab 3pct(1)
7e2fdb3d 4======
5f09af76
DM
5:pve-toplevel:
6
0c6b782f
DM
7NAME
8----
9
10pct - Tool to manage Linux Containers (LXC) on Proxmox VE
11
12
49a5e11c 13SYNOPSIS
0c6b782f
DM
14--------
15
16include::pct.1-synopsis.adoc[]
17
18DESCRIPTION
19-----------
20endif::manvolnum[]
21
22ifndef::manvolnum[]
23Proxmox Container Toolkit
24=========================
194d2f29 25:pve-toplevel:
0c6b782f 26endif::manvolnum[]
5f09af76 27ifdef::wiki[]
cb84ed18 28:title: Linux Container
5f09af76 29endif::wiki[]
4a2ae9ed 30
14e97811
OB
31Containers are a lightweight alternative to fully virtualized machines (VMs).
32They use the kernel of the host system that they run on, instead of emulating a
33full operating system (OS). This means that containers can access resources on
34the host system directly.
4a2ae9ed 35
6d718b9b
TL
36The runtime costs for containers is low, usually negligible. However, there are
37some drawbacks that need be considered:
4a2ae9ed 38
6d718b9b
TL
39* Only Linux distributions can be run in containers.It is not possible to run
40 other Operating Systems like, for example, FreeBSD or Microsoft Windows
41 inside a container.
4a2ae9ed 42
6d718b9b
TL
43* For security reasons, access to host resources needs to be restricted.
44 Containers run in their own separate namespaces. Additionally some syscalls
45 are not allowed within containers.
4a2ae9ed 46
6d718b9b
TL
47{pve} uses https://linuxcontainers.org/[Linux Containers (LXC)] as underlying
48container technology. The ``Proxmox Container Toolkit'' (`pct`) simplifies the
49usage and management of LXC containers.
4a2ae9ed 50
14e97811
OB
51Containers are tightly integrated with {pve}. This means that they are aware of
52the cluster setup, and they can use the same network and storage resources as
53virtual machines. You can also use the {pve} firewall, or manage containers
54using the HA framework.
4a2ae9ed 55
6d718b9b
TL
56Our primary goal is to offer an environment as one would get from a VM, but
57without the additional overhead. We call this ``System Containers''.
4a2ae9ed 58
6d718b9b 59NOTE: If you want to run micro-containers, for example, 'Docker' or 'rkt', it
70a42028 60is best to run them inside a VM.
4a2ae9ed
DM
61
62
99f6ae1a
DM
63Technology Overview
64-------------------
65
66* LXC (https://linuxcontainers.org/)
67
6d718b9b 68* Integrated into {pve} graphical web user interface (GUI)
99f6ae1a
DM
69
70* Easy to use command line tool `pct`
71
72* Access via {pve} REST API
73
6d718b9b 74* 'lxcfs' to provide containerized /proc file system
99f6ae1a 75
6d718b9b 76* Control groups ('cgroups') for resource isolation and limitation
99f6ae1a 77
6d718b9b 78* 'AppArmor' and 'seccomp' to improve security
99f6ae1a 79
14e97811 80* Modern Linux kernels
99f6ae1a
DM
81
82* Image based deployment (templates)
83
6d718b9b 84* Uses {pve} xref:chapter_storage[storage library]
99f6ae1a 85
14e97811 86* Container setup from host (network, DNS, storage, etc.)
99f6ae1a 87
69ab602f 88
4a2ae9ed
DM
89Security Considerations
90-----------------------
91
69ab602f
TL
92Containers use the kernel of the host system. This creates a big attack surface
93for malicious users. This should be considered if containers are provided to
94untrustworthy people. In general, full virtual machines provide better
95isolation.
14e97811
OB
96
97However, LXC uses many security features like AppArmor, CGroups and kernel
98namespaces to reduce the attack surface.
99
100AppArmor profiles are used to restrict access to possibly dangerous actions.
101Some system calls, i.e. `mount`, are prohibited from execution.
4a2ae9ed 102
14e97811
OB
103To trace AppArmor activity, use:
104
105----
106# dmesg | grep apparmor
107----
3bd9d0cf 108
80c0adcb 109[[pct_container_images]]
d61bab51
DM
110Container Images
111----------------
112
8c1189b6 113Container images, sometimes also referred to as ``templates'' or
69ab602f
TL
114``appliances'', are `tar` archives which contain everything to run a container.
115`pct` uses them to create a new container, for example:
d61bab51 116
14e97811
OB
117----
118# pct create 999 local:vztmpl/debian-10.0-standard_10.0-1_amd64.tar.gz
119----
d61bab51 120
69ab602f
TL
121{pve} itself provides a variety of basic templates for the most common Linux
122distributions. They can be downloaded using the GUI or the `pveam` (short for
123{pve} Appliance Manager) command line utility.
124Additionally, https://www.turnkeylinux.org/[TurnKey Linux] container templates
125are also available to download.
d61bab51 126
69ab602f
TL
127The list of available templates is updated daily via cron. To trigger it
128manually:
3a6fa247 129
14e97811
OB
130----
131# pveam update
132----
3a6fa247 133
14e97811 134To view the list of available images run:
3a6fa247 135
14e97811
OB
136----
137# pveam available
138----
3a6fa247 139
8c1189b6
FG
140You can restrict this large list by specifying the `section` you are
141interested in, for example basic `system` images:
3a6fa247
DM
142
143.List available system images
144----
145# pveam available --section system
14e97811
OB
146system alpine-3.10-default_20190626_amd64.tar.xz
147system alpine-3.9-default_20190224_amd64.tar.xz
148system archlinux-base_20190924-1_amd64.tar.gz
149system centos-6-default_20191016_amd64.tar.xz
150system centos-7-default_20190926_amd64.tar.xz
151system centos-8-default_20191016_amd64.tar.xz
152system debian-10.0-standard_10.0-1_amd64.tar.gz
153system debian-8.0-standard_8.11-1_amd64.tar.gz
154system debian-9.0-standard_9.7-1_amd64.tar.gz
155system fedora-30-default_20190718_amd64.tar.xz
156system fedora-31-default_20191029_amd64.tar.xz
157system gentoo-current-default_20190718_amd64.tar.xz
158system opensuse-15.0-default_20180907_amd64.tar.xz
159system opensuse-15.1-default_20190719_amd64.tar.xz
160system ubuntu-16.04-standard_16.04.5-1_amd64.tar.gz
161system ubuntu-18.04-standard_18.04.1-1_amd64.tar.gz
162system ubuntu-19.04-standard_19.04-1_amd64.tar.gz
163system ubuntu-19.10-standard_19.10-1_amd64.tar.gz
3a6fa247
DM
164----
165
69ab602f
TL
166Before you can use such a template, you need to download them into one of your
167storages. You can simply use storage `local` for that purpose. For clustered
168installations, it is preferred to use a shared storage so that all nodes can
169access those images.
3a6fa247 170
14e97811
OB
171----
172# pveam download local debian-10.0-standard_10.0-1_amd64.tar.gz
173----
3a6fa247 174
69ab602f
TL
175You are now ready to create containers using that image, and you can list all
176downloaded images on storage `local` with:
24f73a63
DM
177
178----
179# pveam list local
14e97811 180local:vztmpl/debian-10.0-standard_10.0-1_amd64.tar.gz 219.95MB
24f73a63
DM
181----
182
69ab602f
TL
183The above command shows you the full {pve} volume identifiers. They include the
184storage name, and most other {pve} commands can use them. For example you can
185delete that image later with:
24f73a63 186
14e97811
OB
187----
188# pveam remove local:vztmpl/debian-10.0-standard_10.0-1_amd64.tar.gz
189----
d61bab51 190
80c0adcb 191[[pct_container_storage]]
70a42028
DM
192Container Storage
193-----------------
194
14e97811 195The {pve} LXC container storage model is more flexible than traditional
69ab602f
TL
196container storage models. A container can have multiple mount points. This
197makes it possible to use the best suited storage for each application.
14e97811
OB
198
199For example the root file system of the container can be on slow and cheap
200storage while the database can be on fast and distributed storage via a second
69ab602f
TL
201mount point. See section <<pct_mount_points, Mount Points>> for further
202details.
14e97811
OB
203
204Any storage type supported by the {pve} storage library can be used. This means
205that containers can be stored on local (for example `lvm`, `zfs` or directory),
206shared external (like `iSCSI`, `NFS`) or even distributed storage systems like
207Ceph. Advanced storage features like snapshots or clones can be used if the
208underlying storage supports them. The `vzdump` backup tool can use snapshots to
209provide consistent container backups.
210
211Furthermore, local devices or local directories can be mounted directly using
212'bind mounts'. This gives access to local resources inside a container with
213practically zero overhead. Bind mounts can be used as an easy way to share data
214between containers.
70a42028 215
eeecce95 216
4f785ca7
DM
217FUSE Mounts
218~~~~~~~~~~~
219
69ab602f
TL
220WARNING: Because of existing issues in the Linux kernel's freezer subsystem the
221usage of FUSE mounts inside a container is strongly advised against, as
222containers need to be frozen for suspend or snapshot mode backups.
4f785ca7
DM
223
224If FUSE mounts cannot be replaced by other mounting mechanisms or storage
225technologies, it is possible to establish the FUSE mount on the Proxmox host
226and use a bind mount point to make it accessible inside the container.
227
228
229Using Quotas Inside Containers
230~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
231
69ab602f
TL
232Quotas allow to set limits inside a container for the amount of disk space that
233each user can use.
14e97811 234
69ab602f
TL
235NOTE: This only works on ext4 image based storage types and currently only
236works with privileged containers.
4f785ca7 237
69ab602f
TL
238Activating the `quota` option causes the following mount options to be used for
239a mount point:
4f785ca7
DM
240`usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0`
241
69ab602f
TL
242This allows quotas to be used like on any other system. You can initialize the
243`/aquota.user` and `/aquota.group` files by running:
4f785ca7
DM
244
245----
14e97811
OB
246# quotacheck -cmug /
247# quotaon /
4f785ca7
DM
248----
249
69ab602f
TL
250Then edit the quotas using the `edquota` command. Refer to the documentation of
251the distribution running inside the container for details.
4f785ca7 252
69ab602f
TL
253NOTE: You need to run the above commands for every mount point by passing the
254mount point's path instead of just `/`.
4f785ca7
DM
255
256
257Using ACLs Inside Containers
258~~~~~~~~~~~~~~~~~~~~~~~~~~~~
259
14e97811
OB
260The standard Posix **A**ccess **C**ontrol **L**ists are also available inside
261containers. ACLs allow you to set more detailed file ownership than the
262traditional user/group/others model.
4f785ca7
DM
263
264
14e97811 265Backup of Container mount points
690cd737
EK
266~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
267
14e97811
OB
268To include a mount point in backups, enable the `backup` option for it in the
269container configuration. For an existing mount point `mp0`
270
271----
272mp0: guests:subvol-100-disk-1,mp=/root/files,size=8G
273----
274
275add `backup=1` to enable it.
276
277----
278mp0: guests:subvol-100-disk-1,mp=/root/files,size=8G,backup=1
279----
280
281NOTE: When creating a new mount point in the GUI, this option is enabled by
282default.
283
69ab602f
TL
284To disable backups for a mount point, add `backup=0` in the way described
285above, or uncheck the *Backup* checkbox on the GUI.
690cd737
EK
286
287Replication of Containers mount points
288~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
289
14e97811
OB
290By default, additional mount points are replicated when the Root Disk is
291replicated. If you want the {pve} storage replication mechanism to skip a mount
69ab602f 292point, you can set the *Skip replication* option for that mount point.
14e97811
OB
293As of {pve} 5.0, replication requires a storage of type `zfspool`. Adding a
294mount point to a different type of storage when the container has replication
295configured requires to have *Skip replication* enabled for that mount point.
690cd737 296
f3afbb70 297[[pct_settings]]
4f785ca7
DM
298Container Settings
299------------------
300
304eb5a9
EK
301[[pct_general]]
302General Settings
303~~~~~~~~~~~~~~~~
304
1ff5e4e8 305[thumbnail="screenshot/gui-create-ct-general.png"]
2225402c 306
304eb5a9
EK
307General settings of a container include
308
309* the *Node* : the physical server on which the container will run
69ab602f
TL
310* the *CT ID*: a unique number in this {pve} installation used to identify your
311 container
304eb5a9
EK
312* *Hostname*: the hostname of the container
313* *Resource Pool*: a logical group of containers and VMs
314* *Password*: the root password of the container
315* *SSH Public Key*: a public key for connecting to the root account over SSH
316* *Unprivileged container*: this option allows to choose at creation time
69ab602f 317 if you want to create a privileged or unprivileged container.
304eb5a9 318
14e97811
OB
319Unprivileged Containers
320^^^^^^^^^^^^^^^^^^^^^^^
321
69ab602f
TL
322Unprivileged containers use a new kernel feature called user namespaces.
323The root UID 0 inside the container is mapped to an unprivileged user outside
324the container. This means that most security issues (container escape, resource
14e97811
OB
325abuse, etc.) in these containers will affect a random unprivileged user, and
326would be a generic kernel security bug rather than an LXC issue. The LXC team
327thinks unprivileged containers are safe by design.
328
329This is the default option when creating a new container.
330
69ab602f
TL
331NOTE: If the container uses systemd as an init system, please be aware the
332systemd version running inside the container should be equal to or greater than
333220.
14e97811 334
304eb5a9
EK
335
336Privileged Containers
337^^^^^^^^^^^^^^^^^^^^^
338
14e97811 339Security in containers is achieved by using mandatory access control
69ab602f
TL
340('AppArmor'), 'seccomp' filters and namespaces. The LXC team considers this
341kind of container as unsafe, and they will not consider new container escape
342exploits to be security issues worthy of a CVE and quick fix. That's why
343privileged containers should only be used in trusted environments.
304eb5a9 344
69ab602f
TL
345Although it is not recommended, AppArmor can be disabled for a container. This
346brings security risks with it. Some syscalls can lead to privilege escalation
347when executed within a container if the system is misconfigured or if a LXC or
348Linux Kernel vulnerability exists.
304eb5a9 349
14e97811
OB
350To disable AppArmor for a container, add the following line to the container
351configuration file located at `/etc/pve/lxc/CTID.conf`:
352
353----
354lxc.apparmor_profile = unconfined
355----
356
69ab602f 357WARNING: Please note that this is not recommended for production use.
304eb5a9 358
304eb5a9 359
9a5e9443 360[[pct_cpu]]
9a5e9443
DM
361CPU
362~~~
363
1ff5e4e8 364[thumbnail="screenshot/gui-create-ct-cpu.png"]
097aa949 365
14e97811
OB
366You can restrict the number of visible CPUs inside the container using the
367`cores` option. This is implemented using the Linux 'cpuset' cgroup
69ab602f
TL
368(**c**ontrol *group*).
369A special task inside `pvestatd` tries to distribute running containers among
370available CPUs periodically.
371To view the assigned CPUs run the following command:
9a5e9443
DM
372
373----
374# pct cpusets
375 ---------------------
376 102: 6 7
377 105: 2 3 4 5
378 108: 0 1
379 ---------------------
380----
381
14e97811
OB
382Containers use the host kernel directly. All tasks inside a container are
383handled by the host CPU scheduler. {pve} uses the Linux 'CFS' (**C**ompletely
384**F**air **S**cheduler) scheduler by default, which has additional bandwidth
385control options.
9a5e9443
DM
386
387[horizontal]
0725e3c6 388
69ab602f
TL
389`cpulimit`: :: You can use this option to further limit assigned CPU time.
390Please note that this is a floating point number, so it is perfectly valid to
391assign two cores to a container, but restrict overall CPU consumption to half a
392core.
9a5e9443
DM
393+
394----
395cores: 2
396cpulimit: 0.5
397----
398
69ab602f
TL
399`cpuunits`: :: This is a relative weight passed to the kernel scheduler. The
400larger the number is, the more CPU time this container gets. Number is relative
401to the weights of all the other running containers. The default is 1024. You
402can use this setting to prioritize some containers.
9a5e9443
DM
403
404
405[[pct_memory]]
406Memory
407~~~~~~
408
1ff5e4e8 409[thumbnail="screenshot/gui-create-ct-memory.png"]
097aa949 410
9a5e9443
DM
411Container memory is controlled using the cgroup memory controller.
412
413[horizontal]
414
69ab602f
TL
415`memory`: :: Limit overall memory usage. This corresponds to the
416`memory.limit_in_bytes` cgroup setting.
9a5e9443 417
69ab602f
TL
418`swap`: :: Allows the container to use additional swap memory from the host
419swap space. This corresponds to the `memory.memsw.limit_in_bytes` cgroup
420setting, which is set to the sum of both value (`memory + swap`).
9a5e9443 421
4f785ca7
DM
422
423[[pct_mount_points]]
9e44e493
DM
424Mount Points
425~~~~~~~~~~~~
eeecce95 426
1ff5e4e8 427[thumbnail="screenshot/gui-create-ct-root-disk.png"]
097aa949 428
14e97811 429The root mount point is configured with the `rootfs` property. You can
69ab602f
TL
430configure up to 256 additional mount points. The corresponding options are
431called `mp0` to `mp255`. They can contain the following settings:
01639994
FG
432
433include::pct-mountpoint-opts.adoc[]
434
69ab602f
TL
435Currently there are three types of mount points: storage backed mount points,
436bind mounts, and device mounts.
9e44e493 437
5eba0743 438.Typical container `rootfs` configuration
4c3b5c77
DM
439----
440rootfs: thin1:base-100-disk-1,size=8G
441----
442
443
5eba0743 444Storage Backed Mount Points
4c3b5c77 445^^^^^^^^^^^^^^^^^^^^^^^^^^^
01639994 446
9e44e493 447Storage backed mount points are managed by the {pve} storage subsystem and come
eeecce95
WB
448in three different flavors:
449
5eba0743 450- Image based: these are raw images containing a single ext4 formatted file
eeecce95 451 system.
5eba0743 452- ZFS subvolumes: these are technically bind mounts, but with managed storage,
eeecce95
WB
453 and thus allow resizing and snapshotting.
454- Directories: passing `size=0` triggers a special case where instead of a raw
455 image a directory is created.
456
03782251
FG
457NOTE: The special option syntax `STORAGE_ID:SIZE_IN_GB` for storage backed
458mount point volumes will automatically allocate a volume of the specified size
69ab602f
TL
459on the specified storage. For example, calling
460
461----
462pct set 100 -mp0 thin1:10,mp=/path/in/container
463----
464
465will allocate a 10GB volume on the storage `thin1` and replace the volume ID
466place holder `10` with the allocated volume ID, and setup the moutpoint in the
467container at `/path/in/container`
03782251 468
4c3b5c77 469
5eba0743 470Bind Mount Points
4c3b5c77 471^^^^^^^^^^^^^^^^^
01639994 472
9baca183
FG
473Bind mounts allow you to access arbitrary directories from your Proxmox VE host
474inside a container. Some potential use cases are:
475
476- Accessing your home directory in the guest
477- Accessing an USB device directory in the guest
acccc49b 478- Accessing an NFS mount from the host in the guest
9baca183 479
eeecce95 480Bind mounts are considered to not be managed by the storage subsystem, so you
9baca183 481cannot make snapshots or deal with quotas from inside the container. With
eeecce95 482unprivileged containers you might run into permission problems caused by the
9baca183
FG
483user mapping and cannot use ACLs.
484
8c1189b6 485NOTE: The contents of bind mount points are not backed up when using `vzdump`.
eeecce95 486
69ab602f
TL
487WARNING: For security reasons, bind mounts should only be established using
488source directories especially reserved for this purpose, e.g., a directory
489hierarchy under `/mnt/bindmounts`. Never bind mount system directories like
490`/`, `/var` or `/etc` into a container - this poses a great security risk.
9baca183
FG
491
492NOTE: The bind mount source path must not contain any symlinks.
493
494For example, to make the directory `/mnt/bindmounts/shared` accessible in the
495container with ID `100` under the path `/shared`, use a configuration line like
8c1189b6
FG
496`mp0: /mnt/bindmounts/shared,mp=/shared` in `/etc/pve/lxc/100.conf`.
497Alternatively, use `pct set 100 -mp0 /mnt/bindmounts/shared,mp=/shared` to
9baca183 498achieve the same result.
6b707f2c 499
4c3b5c77 500
5eba0743 501Device Mount Points
4c3b5c77 502^^^^^^^^^^^^^^^^^^^
fe154a4f 503
7432d78e
FG
504Device mount points allow to mount block devices of the host directly into the
505container. Similar to bind mounts, device mounts are not managed by {PVE}'s
506storage subsystem, but the `quota` and `acl` options will be honored.
507
508NOTE: Device mount points should only be used under special circumstances. In
509most cases a storage backed mount point offers the same performance and a lot
510more features.
511
69ab602f
TL
512NOTE: The contents of device mount points are not backed up when using
513`vzdump`.
01639994 514
4c3b5c77 515
80c0adcb 516[[pct_container_network]]
f5c351f0
DM
517Network
518~~~~~~~
04c569f6 519
1ff5e4e8 520[thumbnail="screenshot/gui-create-ct-network.png"]
097aa949 521
69ab602f
TL
522You can configure up to 10 network interfaces for a single container.
523The corresponding options are called `net0` to `net9`, and they can contain the
524following setting:
bac8c385
DM
525
526include::pct-network-opts.adoc[]
04c569f6
DM
527
528
139a9019
DM
529[[pct_startup_and_shutdown]]
530Automatic Start and Shutdown of Containers
531~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
532
14e97811
OB
533To automatically start a container when the host system boots, select the
534option 'Start at boot' in the 'Options' panel of the container in the web
535interface or run the following command:
139a9019 536
14e97811
OB
537----
538# pct set CTID -onboot 1
539----
139a9019 540
4dbeb548
DM
541.Start and Shutdown Order
542// use the screenshot from qemu - its the same
1ff5e4e8 543[thumbnail="screenshot/gui-qemu-edit-start-order.png"]
4dbeb548 544
69ab602f
TL
545If you want to fine tune the boot order of your containers, you can use the
546following parameters:
139a9019 547
69ab602f
TL
548* *Start/Shutdown order*: Defines the start order priority. For example, set it
549 to 1 if you want the CT to be the first to be started. (We use the reverse
550 startup order for shutdown, so a container with a start order of 1 would be
551 the last to be shut down)
552* *Startup delay*: Defines the interval between this container start and
553 subsequent containers starts. For example, set it to 240 if you want to wait
554 240 seconds before starting other containers.
139a9019 555* *Shutdown timeout*: Defines the duration in seconds {pve} should wait
69ab602f
TL
556 for the container to be offline after issuing a shutdown command.
557 By default this value is set to 60, which means that {pve} will issue a
558 shutdown request, wait 60s for the machine to be offline, and if after 60s
559 the machine is still online will notify that the shutdown action failed.
139a9019 560
69ab602f
TL
561Please note that containers without a Start/Shutdown order parameter will
562always start after those where the parameter is set, and this parameter only
139a9019
DM
563makes sense between the machines running locally on a host, and not
564cluster-wide.
565
c2c8eb89
DC
566Hookscripts
567~~~~~~~~~~~
568
569You can add a hook script to CTs with the config property `hookscript`.
570
14e97811
OB
571----
572# pct set 100 -hookscript local:snippets/hookscript.pl
573----
c2c8eb89 574
69ab602f
TL
575It will be called during various phases of the guests lifetime. For an example
576and documentation see the example script under
c2c8eb89 577`/usr/share/pve-docs/examples/guest-example-hookscript.pl`.
139a9019 578
0892a2c2
TL
579Guest Operating System Configuration
580------------------------------------
581
582{pve} tries to detect the Linux distribution in the container, and modifies
583some files. Here is a short list of things done at container startup:
584
585set /etc/hostname:: to set the container name
586
587modify /etc/hosts:: to allow lookup of the local hostname
588
589network setup:: pass the complete network setup to the container
590
591configure DNS:: pass information about DNS servers
592
593adapt the init system:: for example, fix the number of spawned getty processes
594
595set the root password:: when creating a new container
596
597rewrite ssh_host_keys:: so that each container has unique keys
598
599randomize crontab:: so that cron does not start at the same time on all containers
600
601Changes made by {PVE} are enclosed by comment markers:
602
603----
604# --- BEGIN PVE ---
605<data>
606# --- END PVE ---
607----
608
609Those markers will be inserted at a reasonable location in the file. If such a
610section already exists, it will be updated in place and will not be moved.
611
612Modification of a file can be prevented by adding a `.pve-ignore.` file for it.
613For instance, if the file `/etc/.pve-ignore.hosts` exists then the `/etc/hosts`
614file will not be touched. This can be a simple empty file created via:
615
616----
617# touch /etc/.pve-ignore.hosts
618----
619
620Most modifications are OS dependent, so they differ between different
621distributions and versions. You can completely disable modifications by
622manually setting the `ostype` to `unmanaged`.
623
624OS type detection is done by testing for certain files inside the
3d5c55fc
TL
625container. {pve} first checks the `/etc/os-release` file
626footnote:[/etc/os-release replaces the multitude of per-distribution
627release files https://manpages.debian.org/stable/systemd/os-release.5.en.html].
628If that file is not present, or it does not contain a clearly recognizable
629distribution identifier the following distribution specific release files are
630checked.
0892a2c2
TL
631
632Ubuntu:: inspect /etc/lsb-release (`DISTRIB_ID=Ubuntu`)
633
634Debian:: test /etc/debian_version
635
636Fedora:: test /etc/fedora-release
637
638RedHat or CentOS:: test /etc/redhat-release
639
640ArchLinux:: test /etc/arch-release
641
642Alpine:: test /etc/alpine-release
643
644Gentoo:: test /etc/gentoo-release
645
646NOTE: Container start fails if the configured `ostype` differs from the auto
647detected type.
648
649
51e33128
FG
650Backup and Restore
651------------------
652
5eba0743 653
2175e37b
FG
654Container Backup
655~~~~~~~~~~~~~~~~
656
69ab602f
TL
657It is possible to use the `vzdump` tool for container backup. Please refer to
658the `vzdump` manual page for details.
8c1189b6 659
51e33128 660
2175e37b
FG
661Restoring Container Backups
662~~~~~~~~~~~~~~~~~~~~~~~~~~~
663
69ab602f
TL
664Restoring container backups made with `vzdump` is possible using the `pct
665restore` command. By default, `pct restore` will attempt to restore as much of
666the backed up container configuration as possible. It is possible to override
667the backed up configuration by manually setting container options on the
668command line (see the `pct` manual page for details).
2175e37b 669
8c1189b6 670NOTE: `pvesm extractconfig` can be used to view the backed up configuration
2175e37b
FG
671contained in a vzdump archive.
672
673There are two basic restore modes, only differing by their handling of mount
674points:
675
4c3b5c77 676
8c1189b6
FG
677``Simple'' Restore Mode
678^^^^^^^^^^^^^^^^^^^^^^^
2175e37b 679
69ab602f
TL
680If neither the `rootfs` parameter nor any of the optional `mpX` parameters are
681explicitly set, the mount point configuration from the backed up configuration
682file is restored using the following steps:
2175e37b
FG
683
684. Extract mount points and their options from backup
685. Create volumes for storage backed mount points (on storage provided with the
69ab602f 686 `storage` parameter, or default local storage if unset)
2175e37b 687. Extract files from backup archive
69ab602f
TL
688. Add bind and device mount points to restored configuration (limited to root
689 user)
2175e37b
FG
690
691NOTE: Since bind and device mount points are never backed up, no files are
692restored in the last step, but only the configuration options. The assumption
693is that such mount points are either backed up with another mechanism (e.g.,
694NFS space that is bind mounted into many containers), or not intended to be
695backed up at all.
696
697This simple mode is also used by the container restore operations in the web
698interface.
699
4c3b5c77 700
8c1189b6
FG
701``Advanced'' Restore Mode
702^^^^^^^^^^^^^^^^^^^^^^^^^
2175e37b
FG
703
704By setting the `rootfs` parameter (and optionally, any combination of `mpX`
8c1189b6 705parameters), the `pct restore` command is automatically switched into an
2175e37b 706advanced mode. This advanced mode completely ignores the `rootfs` and `mpX`
69ab602f
TL
707configuration options contained in the backup archive, and instead only uses
708the options explicitly provided as parameters.
2175e37b 709
69ab602f
TL
710This mode allows flexible configuration of mount point settings at restore
711time, for example:
2175e37b
FG
712
713* Set target storages, volume sizes and other options for each mount point
69ab602f 714 individually
2175e37b
FG
715* Redistribute backed up files according to new mount point scheme
716* Restore to device and/or bind mount points (limited to root user)
717
51e33128 718
8c1189b6 719Managing Containers with `pct`
04c569f6
DM
720------------------------------
721
6d718b9b
TL
722The ``Proxmox Container Toolkit'' (`pct`) is the command line tool to manage
723{pve} containers. It enables you to create or destroy containers, as well as
724control the container execution (start, stop, reboot, migrate, etc.). It can be
725used to set parameters in the config file of a container, for example the
726network configuration or memory limits.
5eba0743 727
04c569f6
DM
728CLI Usage Examples
729~~~~~~~~~~~~~~~~~~
730
69ab602f
TL
731Create a container based on a Debian template (provided you have already
732downloaded the template via the web interface)
04c569f6 733
14e97811
OB
734----
735# pct create 100 /var/lib/vz/template/cache/debian-10.0-standard_10.0-1_amd64.tar.gz
736----
04c569f6
DM
737
738Start container 100
739
14e97811
OB
740----
741# pct start 100
742----
04c569f6
DM
743
744Start a login session via getty
745
14e97811
OB
746----
747# pct console 100
748----
04c569f6
DM
749
750Enter the LXC namespace and run a shell as root user
751
14e97811
OB
752----
753# pct enter 100
754----
04c569f6
DM
755
756Display the configuration
757
14e97811
OB
758----
759# pct config 100
760----
04c569f6 761
69ab602f
TL
762Add a network interface called `eth0`, bridged to the host bridge `vmbr0`, set
763the address and gateway, while it's running
04c569f6 764
14e97811
OB
765----
766# pct set 100 -net0 name=eth0,bridge=vmbr0,ip=192.168.15.147/24,gw=192.168.15.1
767----
04c569f6
DM
768
769Reduce the memory of the container to 512MB
770
14e97811
OB
771----
772# pct set 100 -memory 512
773----
0585f29a 774
04c569f6 775
fe57a420
FG
776Obtaining Debugging Logs
777~~~~~~~~~~~~~~~~~~~~~~~~
778
779In case `pct start` is unable to start a specific container, it might be
780helpful to collect debugging output by running `lxc-start` (replace `ID` with
781the container's ID):
782
14e97811
OB
783----
784# lxc-start -n ID -F -l DEBUG -o /tmp/lxc-ID.log
785----
fe57a420 786
69ab602f
TL
787This command will attempt to start the container in foreground mode, to stop
788the container run `pct shutdown ID` or `pct stop ID` in a second terminal.
fe57a420
FG
789
790The collected debug log is written to `/tmp/lxc-ID.log`.
791
792NOTE: If you have changed the container's configuration since the last start
793attempt with `pct start`, you need to run `pct start` at least once to also
794update the configuration used by `lxc-start`.
795
33f50e04
DC
796[[pct_migration]]
797Migration
798---------
799
800If you have a cluster, you can migrate your Containers with
801
14e97811
OB
802----
803# pct migrate <ctid> <target>
804----
33f50e04
DC
805
806This works as long as your Container is offline. If it has local volumes or
14e97811 807mount points defined, the migration will copy the content over the network to
ba021358 808the target host if the same storage is defined there.
33f50e04 809
4c82550d
TL
810Running containers cannot live-migrated due to techincal limitations. You can
811do a restart migration, which shuts down, moves and then starts a container
812again on the target node. As containers are very lightweight, this results
813normally only in a downtime of some hundreds of milliseconds.
814
815A restart migration can be done through the web interface or by using the
816`--restart` flag with the `pct migrate` command.
33f50e04 817
69ab602f
TL
818A restart migration will shut down the Container and kill it after the
819specified timeout (the default is 180 seconds). Then it will migrate the
820Container like an offline migration and when finished, it starts the Container
821on the target node.
c7bc47af
DM
822
823[[pct_configuration]]
824Configuration
825-------------
826
69ab602f
TL
827The `/etc/pve/lxc/<CTID>.conf` file stores container configuration, where
828`<CTID>` is the numeric ID of the given container. Like all other files stored
829inside `/etc/pve/`, they get automatically replicated to all other cluster
830nodes.
c7bc47af
DM
831
832NOTE: CTIDs < 100 are reserved for internal purposes, and CTIDs need to be
833unique cluster wide.
834
835.Example Container Configuration
836----
837ostype: debian
838arch: amd64
839hostname: www
840memory: 512
841swap: 512
842net0: bridge=vmbr0,hwaddr=66:64:66:64:64:36,ip=dhcp,name=eth0,type=veth
843rootfs: local:107/vm-107-disk-1.raw,size=7G
844----
845
69ab602f 846The configuration files are simple text files. You can edit them using a normal
da9679b6 847text editor, for example, `vi` or `nano`.
69ab602f
TL
848This is sometimes useful to do small corrections, but keep in mind that you
849need to restart the container to apply such changes.
c7bc47af 850
69ab602f
TL
851For that reason, it is usually better to use the `pct` command to generate and
852modify those files, or do the whole thing using the GUI.
853Our toolkit is smart enough to instantaneously apply most changes to running
da9679b6 854containers. This feature is called ``hot plug'', and there is no need to restart
69ab602f 855the container in that case.
c7bc47af 856
da9679b6 857In cases where a change cannot be hot-plugged, it will be registered as a
69ab602f
TL
858pending change (shown in red color in the GUI).
859They will only be applied after rebooting the container.
14e97811 860
c7bc47af
DM
861
862File Format
863~~~~~~~~~~~
864
69ab602f
TL
865The container configuration file uses a simple colon separated key/value
866format. Each line has the following format:
c7bc47af
DM
867
868-----
869# this is a comment
870OPTION: value
871-----
872
69ab602f
TL
873Blank lines in those files are ignored, and lines starting with a `#` character
874are treated as comments and are also ignored.
c7bc47af 875
69ab602f 876It is possible to add low-level, LXC style configuration directly, for example:
c7bc47af 877
14e97811
OB
878----
879lxc.init_cmd: /sbin/my_own_init
880----
c7bc47af
DM
881
882or
883
14e97811
OB
884----
885lxc.init_cmd = /sbin/my_own_init
886----
c7bc47af 887
14e97811 888The settings are passed directly to the LXC low-level tools.
c7bc47af
DM
889
890
891[[pct_snapshots]]
892Snapshots
893~~~~~~~~~
894
69ab602f
TL
895When you create a snapshot, `pct` stores the configuration at snapshot time
896into a separate snapshot section within the same configuration file. For
897example, after creating a snapshot called ``testsnapshot'', your configuration
898file will look like this:
c7bc47af
DM
899
900.Container configuration with snapshot
901----
902memory: 512
903swap: 512
904parent: testsnaphot
905...
906
907[testsnaphot]
908memory: 512
909swap: 512
910snaptime: 1457170803
911...
912----
913
69ab602f
TL
914There are a few snapshot related properties like `parent` and `snaptime`. The
915`parent` property is used to store the parent/child relationship between
916snapshots. `snaptime` is the snapshot creation time stamp (Unix epoch).
c7bc47af
DM
917
918
919[[pct_options]]
920Options
921~~~~~~~
922
923include::pct.conf.5-opts.adoc[]
924
925
2a11aa70
DM
926Locks
927-----
928
69ab602f
TL
929Container migrations, snapshots and backups (`vzdump`) set a lock to prevent
930incompatible concurrent actions on the affected container. Sometimes you need
931to remove such a lock manually (e.g., after a power failure).
2a11aa70 932
14e97811
OB
933----
934# pct unlock <CTID>
935----
2a11aa70 936
69ab602f
TL
937CAUTION: Only do this if you are sure the action which set the lock is no
938longer running.
2a11aa70 939
fe57a420 940
0c6b782f 941ifdef::manvolnum[]
3bd9d0cf
DM
942
943Files
944------
945
946`/etc/pve/lxc/<CTID>.conf`::
947
948Configuration file for the container '<CTID>'.
949
950
0c6b782f
DM
951include::pve-copyright.adoc[]
952endif::manvolnum[]