.. _configuring-ceph: ================== Configuring Ceph ================== When you start the Ceph service, the initialization process activates a series of daemons that run in the background. A :term:`Ceph Storage Cluster` runs three types of daemons: - :term:`Ceph Monitor` (``ceph-mon``) - :term:`Ceph Manager` (``ceph-mgr``) - :term:`Ceph OSD Daemon` (``ceph-osd``) Ceph Storage Clusters that support the :term:`Ceph Filesystem` run at least one :term:`Ceph Metadata Server` (``ceph-mds``). Clusters that support :term:`Ceph Object Storage` run Ceph Gateway daemons (``radosgw``). Each daemon has a series of configuration options, each of which has a default values. You may adjust the behavior of the system by changing these configuration options. Option names ============ All Ceph configuration options have a unique name consisting of words formed with lower-case characters and connected with underscore (``_``) characters. When option names are specified on the command line, either underscore (``_``) or dash (``-``) characters can be used interchangeable (e.g., ``--mon-host`` is equivalent to ``--mon_host``). When option names appear in configuration files, spaces can also be used in place of underscore or dash. Config sources ============== Each Ceph daemon, process, and library will pull its configuration from several sources, listed below. Sources later in the list will override those earlier in the list when both are present. - the compiled-in default value - the monitor cluster's centralized configuration database - a configuration file stored on the local host - environment variables - command line arguments - runtime overrides set by an administrator One of the first things a Ceph process does on startup is parse the configuration options provided via the command line, environment, and local configuration file. The process will then contact the monitor cluster to retrieve configuration stored centrally for the entire cluster. Once a complete view of the configuration is available, the daemon or process startup will proceed. Bootstrap options ----------------- Because some configuration options affect the process's ability to contact the monitors, authenticate, and retrieve the cluster-stored configuration, they may need to be stored locally on the node and set in a local configuration file. These options include: - ``mon_host``, the list of monitors for the cluster - ``mon_host_override``, the list of monitors for the cluster to **initially** contact when beginning a new instance of communication with the Ceph cluster. This overrides the known monitor list derived from MonMap updates sent to older Ceph instances (like librados cluster handles). It is expected this option is primarily useful for debugging. - ``mon_dns_serv_name`` (default: `ceph-mon`), the name of the DNS SRV record to check to identify the cluster monitors via DNS - ``mon_data``, ``osd_data``, ``mds_data``, ``mgr_data``, and similar options that define which local directory the daemon stores its data in. - ``keyring``, ``keyfile``, and/or ``key``, which can be used to specify the authentication credential to use to authenticate with the monitor. Note that in most cases the default keyring location is in the data directory specified above. In the vast majority of cases the default values of these are appropriate, with the exception of the ``mon_host`` option that identifies the addresses of the cluster's monitors. When DNS is used to identify monitors a local ceph configuration file can be avoided entirely. Skipping monitor config ----------------------- Any process may be passed the option ``--no-mon-config`` to skip the step that retrieves configuration from the cluster monitors. This is useful in cases where configuration is managed entirely via configuration files or where the monitor cluster is currently down but some maintenance activity needs to be done. .. _ceph-conf-file: Configuration sections ====================== Any given process or daemon has a single value for each configuration option. However, values for an option may vary across different daemon types even daemons of the same type. Ceph options that are stored in the monitor configuration database or in local configuration files are grouped into sections to indicate which daemons or clients they apply to. These sections include: ``global`` :Description: Settings under ``global`` affect all daemons and clients in a Ceph Storage Cluster. :Example: ``log_file = /var/log/ceph/$cluster-$type.$id.log`` ``mon`` :Description: Settings under ``mon`` affect all ``ceph-mon`` daemons in the Ceph Storage Cluster, and override the same setting in ``global``. :Example: ``mon_cluster_log_to_syslog = true`` ``mgr`` :Description: Settings in the ``mgr`` section affect all ``ceph-mgr`` daemons in the Ceph Storage Cluster, and override the same setting in ``global``. :Example: ``mgr_stats_period = 10`` ``osd`` :Description: Settings under ``osd`` affect all ``ceph-osd`` daemons in the Ceph Storage Cluster, and override the same setting in ``global``. :Example: ``osd_op_queue = wpq`` ``mds`` :Description: Settings in the ``mds`` section affect all ``ceph-mds`` daemons in the Ceph Storage Cluster, and override the same setting in ``global``. :Example: ``mds_cache_size = 10G`` ``client`` :Description: Settings under ``client`` affect all Ceph Clients (e.g., mounted Ceph Filesystems, mounted Ceph Block Devices, etc.) as well as Rados Gateway (RGW) daemons. :Example: ``objecter_inflight_ops = 512`` Sections may also specify an individual daemon or client name. For example, ``mon.foo``, ``osd.123``, and ``client.smith`` are all valid section names. Any given daemon will draw its settings from the global section, the daemon or client type section, and the section sharing its name. Settings in the most-specific section take precedence, so for example if the same option is specified in both ``global``, ``mon``, and ``mon.foo`` on the same source (i.e., in the same configurationfile), the ``mon.foo`` value will be used. Note that values from the local configuration file always take precedence over values from the monitor configuration database, regardless of which section they appear in. .. _ceph-metavariables: Metavariables ============= Metavariables simplify Ceph Storage Cluster configuration dramatically. When a metavariable is set in a configuration value, Ceph expands the metavariable into a concrete value at the time the configuration value is used. Ceph metavariables are similar to variable expansion in the Bash shell. Ceph supports the following metavariables: ``$cluster`` :Description: Expands to the Ceph Storage Cluster name. Useful when running multiple Ceph Storage Clusters on the same hardware. :Example: ``/etc/ceph/$cluster.keyring`` :Default: ``ceph`` ``$type`` :Description: Expands to a daemon or process type (e.g., ``mds``, ``osd``, or ``mon``) :Example: ``/var/lib/ceph/$type`` ``$id`` :Description: Expands to the daemon or client identifier. For ``osd.0``, this would be ``0``; for ``mds.a``, it would be ``a``. :Example: ``/var/lib/ceph/$type/$cluster-$id`` ``$host`` :Description: Expands to the host name where the process is running. ``$name`` :Description: Expands to ``$type.$id``. :Example: ``/var/run/ceph/$cluster-$name.asok`` ``$pid`` :Description: Expands to daemon pid. :Example: ``/var/run/ceph/$cluster-$name-$pid.asok`` The Configuration File ====================== On startup, Ceph processes search for a configuration file in the following locations: #. ``$CEPH_CONF`` (*i.e.,* the path following the ``$CEPH_CONF`` environment variable) #. ``-c path/path`` (*i.e.,* the ``-c`` command line argument) #. ``/etc/ceph/$cluster.conf`` #. ``~/.ceph/$cluster.conf`` #. ``./$cluster.conf`` (*i.e.,* in the current working directory) #. On FreeBSD systems only, ``/usr/local/etc/ceph/$cluster.conf`` where ``$cluster`` is the cluster's name (default ``ceph``). The Ceph configuration file uses an *ini* style syntax. You can add comments by preceding comments with a pound sign (#) or a semi-colon (;). For example: .. code-block:: ini # <--A number (#) sign precedes a comment. ; A comment may be anything. # Comments always follow a semi-colon (;) or a pound (#) on each line. # The end of the line terminates a comment. # We recommend that you provide comments in your configuration file(s). .. _ceph-conf-settings: Config file section names ------------------------- The configuration file is divided into sections. Each section must begin with a valid configuration section name (see `Configuration sections`_, above) surrounded by square brackets. For example, .. code-block:: ini [global] debug ms = 0 [osd] debug ms = 1 [osd.1] debug ms = 10 [osd.2] debug ms = 10 Monitor configuration database ============================== The monitor cluster manages a database of configuration options that can be consumed by the entire cluster, enabling streamlined central configuration management for the entire system. The vast majority of configuration options can and should be stored here for ease of administration and transparency. A handful of settings may still need to be stored in local configuration files because they affect the ability to connect to the monitors, authenticate, and fetch configuration information. In most cases this is limited to the ``mon_host`` option, although this can also be avoided through the use of DNS SRV records. Sections and masks ------------------ Configuration options stored by the monitor can live in a global section, daemon type section, or specific daemon section, just like options in a configuration file can. In addition, options may also have a *mask* associated with them to further restrict which daemons or clients the option applies to. Masks take two forms: #. ``type:location`` where *type* is a CRUSH property like `rack` or `host`, and *location* is a value for that property. For example, ``host:foo`` would limit the option only to daemons or clients running on a particular host. #. ``class:device-class`` where *device-class* is the name of a CRUSH device class (e.g., ``hdd`` or ``ssd``). For example, ``class:ssd`` would limit the option only to OSDs backed by SSDs. (This mask has no effect for non-OSD daemons or clients.) When setting a configuration option, the `who` may be a section name, a mask, or a combination of both separated by a slash (``/``) character. For example, ``osd/rack:foo`` would mean all OSD daemons in the ``foo`` rack. When viewing configuration options, the section name and mask are generally separated out into separate fields or columns to ease readability. Commands -------- The following CLI commands are used to configure the cluster: * ``ceph config dump`` will dump the entire configuration database for the cluster. * ``ceph config get `` will dump the configuration for a specific daemon or client (e.g., ``mds.a``), as stored in the monitors' configuration database. * ``ceph config set