Windows 上的 InfluxDb 外部配置

InfluxDb external configuration on Windows

我正尝试在 Windows 上的 InfluxDB 运行 上使用外部配置, 我已将元数据、数据和 wal 更改为 windows 路径,但出现以下错误:

run: parse config: Near line 29 (last key parsed 'meta.dir'): Expected eight hexadecimal digits after '\U', but got 'C:\Us' instead.

[meta]
  # Where the metadata/raft database is stored
  #dir = "/var/lib/influxdb/meta"
  dir = "C:\Users\User01\.influxdb\meta"

https://github.com/influxdata/influxdb/blob/master/etc/config.sample.toml

好的,已解决..需要使用双引号...

dir = "C:\Users\User01\.influxdb\meta"