chronoctl migrate
该 migrate
命令让您迁移 Chronograf 配置存储。
默认情况下,Chronograf 配备 BoltDB 作为数据存储。有关将 BoltDB 迁移到 etcd 集群作为数据存储的信息,请参阅 迁移到 Chronograf 高可用配置。
用法
chronoctl migrate [flags]
标志
标志 | 描述 | 输入类型 | |
---|---|---|---|
-f | --from | BoltDB 文件或 etcd 的完整路径(例如 bolt:///path/to/chronograf-v1.db 或 etcd://user:pass@localhost:2379 (默认:chronograf-v1.db ) | 字符串 |
-t | --to | BoltDB 文件或 etcd 的完整路径(例如 bolt:///path/to/chronograf-v1.db 或 etcd://user:pass@localhost:2379 (默认:etcd://127.0.0.1:2379 ) | 字符串 |
提供 etcd 认证凭据
如果 etcd
上启用了身份验证,请使用标准的 URI 基本认证格式定义用户名和密码。例如
etcd://username:password@localhost:2379
提供 etcd TLS 凭据
如果 etcd
上启用了 TLS,请使用以下查询参数在您的 etcd URL 中提供 TLS 证书凭据
- cert:客户端证书文件或 PEM 文件的路径
- key:客户端密钥文件的路径
- ca:受信任的 CA 证书的路径
etcd://127.0.0.1:2379?cert=/tmp/client.crt&key=/tst/client.key&ca=/tst/ca.crt
这个页面有帮助吗?
感谢您的反馈!