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