manage_config recover
lorem ipsum
Recreates the vcluster configuration file.
This file is automatically generated in /opt/vertica/config/vertica_cluster.yaml when you use create_db.
Syntax
vcluster manage_config recover options
Required options
--catalog-pathstring- The absolute path to the catalog directory.
{ -c | --config }string- The path to write the configuration file.
Default:
/opt/vertica/config/vertica_cluster.yaml
--hostsstrings- A comma-separated list of hosts in database.
Options
--after-revive- Recovers the configuration file after reviving the database. You should only use this if, after reviving the database, you modify the configuration file manually, which is not recommended.
--cert-filestring- The absolute path to the certificate file. If you specify this option, you must also specify
--key-file. You should only use--cert-fileand--key-fileif you have configured the Node Management Agent (NMA) to use custom certificates.
{ -d | --db-name }string- The name of the database. You should only use this option if you want to override the database name in your configuration file. This string must conform to the format used for database names.
--depot-pathstring- [Eon only] The absolute path to depot directory.
{ -h | --help }- Prints help text.
--ipv6- Whether the hosts use IPv6 addresses. Hostnames resolve to IPv4 by default.
--key-filestring- Path to the key file. If you specify this option, you must also specify
--cert-file. You should only use--cert-fileand--key-fileif you have configured the Node Management Agent (NMA) to use custom certificates.
{ -l | --log-path }string- The absolute path for debug logs.
Default:
/opt/vertica/log/vcluster.log
--overwrite- Overwrites the existing
/opt/vertica/config/vertica_cluster.yaml, if any. If a configuration file already exists and this flag is not specified,recoverhas no effect.
--verbose- Shows the details of VCluster run in the console.
Examples
Recrates the configuration file in the default location for an Eon Mode database:
$ vcluster manage_config recover --db-name vertica_db \
--hosts 192.0.2.0,192.0.2.1,192.0.2.2 \
--catalog-path /data --depot-path /data
Recreates the configuration file to a specific path:
$ vcluster manage_config recover --db-name test_db \
--hosts 192.0.2.0,192.0.2.1,192.0.2.2 \
--catalog-path /data --depot-path /data \
--config /tmp/vertica_cluster.yaml