写入历史文件时出现 Influx 数据库错误
Influx Database error when writing to history file
我正在使用 influxDB。当我 运行 一个命令时,例如SHOW measurements
来自 influx CLI 我收到以下错误:
there was an error writing history file : open : The system file cannot find the file specified
.
我该如何解决这个问题?
对于windows:
1) 创建 influx.bat 文件如下:
@ECHO OFF
SETLOCAL
SET HOME=%~dp0
"%~dp0\influx.exe" %*
ENDLOCAL
2) 将其保存在与influxdb可执行文件相同的目录中。
参见 screenshot
我正在使用 influxDB。当我 运行 一个命令时,例如SHOW measurements
来自 influx CLI 我收到以下错误:
there was an error writing history file : open : The system file cannot find the file specified
.
我该如何解决这个问题?
对于windows:
1) 创建 influx.bat 文件如下:
@ECHO OFF
SETLOCAL
SET HOME=%~dp0
"%~dp0\influx.exe" %*
ENDLOCAL
2) 将其保存在与influxdb可执行文件相同的目录中。 参见 screenshot