2

Please help after installing Thingsboard successfully on windows I'm getting this error while try start the services.

The ThingsBoard Server Application service is starting.
The ThingsBoard Server Application service could not be started.
A system error has occurred.
System error 1067 has occurred.
The process terminated unexpectedly.
galoget
  • 722
  • 9
  • 15
amit banik
  • 21
  • 1
  • 3

2 Answers2

4

In some cases, you must set the full path to the java file.to do that:

1- open the thingsboard.xml file in the base directory.
2- search for this line <executable>java</executable>
3- change the above line with <executable>C:\Program Files\Java\jdk1.8.0_121\bin\java</executable>
4- net start thingsboard

output

The ThingsBoard Server Application service is starting.
The ThingsBoard Server Application service was started successfully.
AYRM1112013
  • 309
  • 1
  • 7
1

This is a known bug (see here).

If AYR1112013's solution will not work, you can temporarly fix the issue by removing the flag "-XX:+UseCondCardMark" in your thingsboard.xml.

After that start the service as usual with "net start thingsboard".

AbCthings
  • 116
  • 9
  • 1
    Your solution worked for me with the recent thingsboard version. I'd add that you want to comment the line out, like that: `` – kevinunger Dec 01 '20 at 12:15