LVM.CONF(5) | File Formats Manual | LVM.CONF(5) |
lvm.conf — Configuration file for LVM2
/etc/lvm/lvm.conf
lvm.conf is loaded during the initialisation phase of lvm(8). This file can in turn lead to other files being loaded - settings read in later override earlier settings. File timestamps are checked between commands and if any have changed, all the files are reloaded.
For a description of each lvm.conf setting, run:
lvmconfig --typeconfig default --withcomments --withspaces
The settings defined in lvm.conf can be overridden by any of these extended configuration methods:
There are two groups of profiles recognised: command profiles and metadata profiles.
The command profile is used to override selected configuration settings at global LVM command level - it is applied at the very beginning of LVM command execution and it is used throughout the whole time of LVM command execution. The command profile is applied by using the --commandprofile ProfileName command line option that is recognised by all LVM2 commands.
The metadata profile is used to override selected configuration settings at Volume Group/Logical Volume level - it is applied independently for each Volume Group/Logical Volume that is being processed. As such, each Volume Group/Logical Volume can store the profile name used in its metadata so next time the Volume Group/Logical Volume is processed, the profile is applied automatically. If Volume Group and any of its Logical Volumes have different profiles defined, the profile defined for the Logical Volume is preferred. The metadata profile can be attached/detached by using the lvchange and vgchange commands and their --metadataprofile ProfileName and --detachprofile options or the --metadataprofile option during creation when using vgcreate or lvcreate command. The vgs and lvs reporting commands provide -o vg_profile and -o lv_profile output options to show the metadata profile currently attached to a Volume Group or a Logical Volume.
The set of options allowed for command profiles is mutually exclusive when compared to the set of options allowed for metadata profiles. The settings that belong to either of these two sets can't be mixed together and LVM tools will reject such profiles.
LVM itself provides a few predefined configuration profiles. Users are allowed to add more profiles with different values if needed. For this purpose, there's the command_profile_template.profile (for command profiles) and metadata_profile_template.profile (for metadata profiles) which contain all settings that are customizable by profiles of certain type. Users are encouraged to copy these template profiles and edit them as needed. Alternatively, the lvmconfig --file <ProfileName.profile> --type profilable-command <section> or lvmconfig --file <ProfileName.profile> --type profilable-metadata <section> can be used to generate a configuration with profilable settings in either of the type for given section and save it to new ProfileName.profile (if the section is not specified, all profilable settings are reported).
The profiles are stored in /etc/lvm/profile directory by default. This location can be changed by using the config/profile_dir setting. Each profile configuration is stored in ProfileName.profile file in the profile directory. When referencing the profile, the .profile suffix is left out.
When several configuration methods are used at the same time and when LVM looks for the value of a particular setting, it traverses this config cascade from left to right:
direct config override on command line-> command profile config-> metadata profile config-> tag config-> lvmlocal.conf-> lvm.conf
No part of this cascade is compulsory. If there's no setting value found at the end of the cascade, a default value is used for that setting. Use lvmconfig to check what settings are in use and what the default values are.
This section describes the configuration file syntax.
Whitespace is not significant unless it is within quotes. This provides a wide choice of acceptable indentation styles. Comments begin with # and continue to the end of the line. They are treated as whitespace.
Here is an informal grammar:
The lvmconfig command prints the LVM configuration settings in various ways. See the man page lvmconfig(8).
Command to print a list of all possible config settings, with
their default values:
lvmconfig --type default
Command to print a list of all possible config settings, with
their default values, and a full description of each as a comment:
lvmconfig --type default --withcomments
Command to print a list of all possible config settings, with
their current values (configured, non-default values are shown):
lvmconfig --type current
Command to print all config settings that have been configured
with a different value than the default (configured, non-default values are
shown):
lvmconfig --type diff
Command to print a single config setting, with its default value,
and a full description, where "Section" refers to the config
section, e.g. global, and "Setting" refers to the name of the
specific setting, e.g. umask:
lvmconfig --type default --withcomments Section/Setting
/etc/lvm/lvm.conf
/etc/lvm/lvmlocal.conf
/etc/lvm/archive
/etc/lvm/backup
/etc/lvm/cache/.cache
/run/lock/lvm
/etc/lvm/profile
LVM TOOLS 2.03.11(2) (2021-01-08) | Red Hat, Inc. |