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