Dev Pandey
Dev Pandey

Reputation: 1

After installation of Hyperon not able to browse http://localhost:38080/hyperon/app

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:

Error Screenshot

Reproduceable Steps:

  1. Downloaded hyperon zip and extracted it.
  2. Open the file directory and reach to the /bin folder
  3. Opened it in command prompt:
  4. Ran startup.bat file.

Refer to below screenshot: command prompt logs tomcat command prompt logs and output after executing- startup.bat

Upvotes: 0

Views: 66

Answers (1)

przemek hertel
przemek hertel

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

Related Questions