Home > Mobile >  Payara server starts for a brief time but doesn't connect
Payara server starts for a brief time but doesn't connect

Time:10-19

I recently had to reinstall IntelliJ IDEA, and ever since then, I've been unable to run this one app that runs on Payara. I have Payara 5.2022.3 (full) installed and the project is using java 11.

This is the server log:

Artifact my_project-ear:ear exploded: Waiting for server connection to start artifact deployment…

Detected server admin port: 4848

Detected server http port: 8080

And then nothing happens. And if I terminate the process I get a message:

Application Server was not connected before run configuration stop, reason: Unable to ping server at localhost:4848

Based on my observation it seems like a process starts running on port 4848 for a few seconds but then stops abruptly.

I checked the CrashDumps and here is the .dpm file in question. https://drive.google.com/file/d/1AyLU2HOyXKxREjaDNyIU9eRYMnzaBspw/view?usp=sharing

I'd already tried:

  • Running it on a different port./ Checking if there was not a process blocking used ports.
  • "Renewing" the domain.xml in case it was corrupted somehow.
  • Using different JDK.
  • Reinstalling Windows

I'm positive there is no problem with the app's code (seen a friend run it on his computer today) and I also think no changes happened to the run/debug configuration or the payara and domain configuration ever since it was working before the IDEA reinstall.

(I'm also very new to payara, and software development in general, so I'm not quite as skilled in solving this kind of problem.)

Thank you for all your answers.

CodePudding user response:

It looks like a bug in the Java version/vendor you are using which is causing the crash of the process. Updating to a more recent Java build or to a different JVM vendor should help.

  • Related