0
我正在使用influxDB。當我運行一個命令,例如SHOW measurements
來自influx CLI我收到以下錯誤: there was an error writing history file : open : The system file cannot find the file specified
。寫入歷史記錄文件時涌入數據庫錯誤
我該如何解決這個問題?
我正在使用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