【发布时间】:2017-08-01 12:19:12
【问题描述】:
我正在使用 influxDB。当我运行命令时,例如SHOW measurements 来自 influx CLI 我收到以下错误:
there was an error writing history file : open : The system file cannot find the file specified.
我该如何解决这个问题?
【问题讨论】:
标签: influxdb
我正在使用 influxDB。当我运行命令时,例如SHOW measurements 来自 influx CLI 我收到以下错误:
there was an error writing history file : open : The system file cannot find the file specified.
我该如何解决这个问题?
【问题讨论】:
标签: influxdb
对于窗户:
1) 创建influx.bat文件如下:
@ECHO OFF
SETLOCAL
SET HOME=%~dp0
"%~dp0\influx.exe" %*
ENDLOCAL
2) 将其保存在与 influxdb 可执行文件相同的目录中。 见screenshot
【讨论】: