Reputation: 1
I have installed Hyperon a business rule engine on windows machine. I have fallowed instruction to install it from: - https://www.hyperon.io/tutorial/installing-hyperon-studio After installation I have browse below URL to see whether #Hyperon web app is running or not.
http://localhost:38080/hyperon/app
I am getting this error:
Reproduceable Steps:
Refer to below screenshot: command prompt logs tomcat command prompt logs and output after executing- startup.bat
Upvotes: 0
Views: 66
Reputation: 4024
Such effect occurs when trying to run hyperon with JDK 8. Hyperon Studio requires JDK 11.
See installation guide: https://www.hyperon.io/tutorial/installing-hyperon-studio
If you have multiple JDKs installed, you can swith to proper by setting JAVA_HOME variable:
for example:
cd c:\hyperon-studio-2.1.9\bin
set JAVA_HOME=c:\java\jdk-11.0.4
startup.bat
The first run may take a minute, because hyperon needs to initialize database schema. Once it is fully started you will see hyperon.log file and should be able to access localhost:38080/hyperon/app.
Upvotes: 1