2017-08-01 77 views
0

我正在使用influxDB。當我運行一個命令,例如SHOW measurements來自influx CLI我收到以下錯誤: there was an error writing history file : open : The system file cannot find the file specified寫入歷史記錄文件時涌入數據庫錯誤

我該如何解決這個問題?

回答

2

對於Windows:

1)創建,如下influx.bat文件:

@ECHO OFF 
SETLOCAL 
SET HOME=%~dp0 
"%~dp0\influx.exe" %* 
ENDLOCAL 

2)將其保存在同一目錄influxdb可執行文件。 見screenshot