Manager Command Line Options¶
Reference for the command line options of the EVerest manager binary, the
process that spawns and supervises all module processes. See
Manager Lifecycle State Machine for what the manager does with them, and
EVerest Configuration Service for how configuration is stored and loaded.
Note
Option abbreviation is disabled: every option must be spelled in full.
--conf is therefore not accepted as a prefix of --config — it is a
separate, deprecated option (see below).
Some options are marked experimental. Those are part of the public surface but exempt from the EVerest stability guarantees and the deprecation period: they may change incompatibly or be removed in any release. See Experimental Components for what that means, and Experimental Feature Index for the current list. The manager emits a warning at startup naming any experimental option it was given.
General¶
--versionPrint version and exit.
--help,-hProduce the help message.
--checkCheck and validate all config files and exit. Exit code
0means success.--prefix <path>Prefix path of the EVerest installation.
Configuration and Storage¶
--config <path>Full path to a config file. If the file does not exist and has no extension, it is looked up in the default config directory. Optional: defaults to the default config file in the default config directory. Without
--db, the config is loaded from YAML on every start and runtime configuration changes are persisted touser-config/<config-name>.yaml.--conf <path>Deprecated. Same as
--config. Do not use both — passing both is rejected as ambiguous, and using--conflogs a deprecation warning.--db <path>Full path to the configuration database file. Optional: without
--dban in-memory database is used and the YAML config is authoritative on every start. With--dband--config, the database wins when it holds a valid configuration; otherwise it is seeded from the YAML config.--reset-from-yamlExperimental. Discard the existing database slot and re-seed from the YAML config file. Intended for development use when you want to reset to a known YAML state. Requires
--config.--db-initDeprecated, no effect. Seeding the database from YAML when it holds no valid configuration is now the default. Ignored unless both
--configand--dbare given. Use--reset-from-yamlto force re-seeding.
Module Lifecycle¶
--standalone <module-id>...,-s <module-id>...Module ID(s) to not automatically start child processes for. Those must be started manually to make the framework start. Accepts multiple values.
--ignore <module-id>...Module ID(s) to ignore: do not automatically start child processes and do not require that they are started. Accepts multiple values.
--into-idleExperimental. Boot into idle state — no modules are started. Also enters Idle instead of exiting when the configuration is invalid, missing or contains no modules.
--idle-on-failureExperimental. When there is nothing startable — the boot configuration is invalid or contains no modules, crash recovery is exhausted with
--recover-module-crashes, or a configuration reload fails during a module restart — keep the manager alive in Idle so the configuration API stays available. Default: exit with an error.--recover-module-crashesExperimental. After an unexpected module exit, reload the config and restart the modules, bounded by an internal retry limit. Default: shut down all modules and exit the manager.
--graceful-shutdownExperimental. On shutdown, restart or crash, publish the shutdown signal via MQTT so modules can run their shutdown handlers, and force-terminate stragglers only after a timeout. Default: terminate module processes immediately with
SIGTERM, escalating toSIGKILL.
Diagnostics and Debugging¶
--dump <dir>Dump the validated and augmented main config and all used module manifests into the given directory.
--dumpmanifests <dir>Dump the manifests of all modules into the given directory — including modules not used in the config — and exit.
--dontvalidateschemaDo not validate the JSON schema on every message.
--status-fifo <path>Path to a named pipe that shall be used for status updates from the manager. Defaults to empty, which disables it. See Manager Lifecycle State Machine for the messages written to it.
--retain-topicsRetain the configuration MQTT topics set up by the manager, for inspection. By default these are cleared after startup.
--mqtt_everest_prefix <prefix>Override the MQTT everest prefix. Useful for running multiple instances in parallel.