The IoTDB system cannot find the specified path solution

Problem Description

"The system cannot find the specified path" when starting the IoTDB client on windows

Insert picture description here

the reason

This is how it is written in the startup script, which is usually the problem with this sentence:

"%JAVA_HOME%\bin\java" %JAVA_OPTS% -cp "%CLASSPATH%" %MAIN_CLASS% %PARAMETERS%

If JAVA_HOME contains \bin, an error will occur.

Solution

Do not include bin in the JAVA_HOME path

Guess you like

Origin blog.csdn.net/qiaojialin/article/details/102624978