docs-v2/content/influxdb/v2.2/reference/cli/influxd/print-config.md

2.4 KiB

title description influxdb/v2.2/tags menu weight related
influxd print-config The `influxd print-config` command prints a full InfluxDB configuration resolved from the current `influxd` environment.
influxd
cli
influxdb_2_2_ref
parent
influxd
201
/influxdb/v2.2/reference/config-options/
/influxdb/v2.2/reference/cli/influx/server-config/

The influxd print-config command prints a full InfluxDB configuration resolved from the current influxd environment. The command formats output as YAML.

{{% warn %}}

Use influx CLI server-config

influxd print-config is deprecated in InfluxDB v2.2.

To display the runtime server configuration, use the influx server-config command or the /api/v2/config InfluxDB API endpoint. For more information, see how to view your server configuration. {{% /warn %}}

influxd print-config does not output the configuration of the running server. Rather, it evaluates the current environment, config file, and flags passed to the influxd print-config command. It is unaware of configuration options passed to the influxd command at runtime.

For example, with the following configuration value:

# Configuration file
...
log-level: info
...

and --log-level provided at startup:

influxd --log-level warn

influxd print-config displays

...
log-level: info
...

influxd print-config log-level warn displays

...
log-level: warn
...

Usage

influxd print-config [flags]

{{% note %}} For information about available InfluxDB configuration methods, see InfluxDB configuration options. {{% /note %}}

Flags

Flag Description Input type
-h --help Help for print-config
--key-name Print the value of a specific configuration key string

Examples

Print full influxd configuration
influxd print-config
Print the value of a specific influxd configuration setting
influxd print-config --key-name=http-bind-address