SELENIUM_UNREACHABLE_ERROR after first run in Oxygen IDE

I am able to run tests only once, afterwords oxygen stops at web.init(), not been able to start a selenium server.

selenium log:

14:22:00.685 INFO [GridLauncherV3.parse] - Selenium server version: 3.141.59, revision: e82be7d358
14:22:01.166 INFO [GridLauncherV3.lambda$buildLaunchers$3] - Launching a standalone Selenium Server on port 4444
2020-04-29 14:22:01.464:INFO::main: Logging initialized @1864ms to org.seleniumhq.jetty9.util.log.StdErrLog
14:22:02.391 INFO [WebDriverServlet.<init>] - Initialising WebDriverServlet
14:22:02.693 INFO [SeleniumServer.boot] - Selenium Server is up and running on port 4444
14:25:51.839 INFO [ActiveSessionFactory.apply] - Capabilities are: {
  "browserName": "chrome"
}
14:25:51.848 INFO [ActiveSessionFactory.lambda$apply$11] - Matched factory org.openqa.selenium.grid.session.remote.ServicedSession$Factory (provider: org.openqa.selenium.chrome.ChromeDriverService)
Starting ChromeDriver 81.0.4044.69 (6813546031a4bc83f717a2ef7cd4ac6ec1199132-refs/branch-heads/4044@{#776}) on port 32002
Only local connections are allowed.
Please protect ports used by ChromeDriver and related test frameworks to prevent access by malicious code.
14:25:54.286 INFO [ProtocolHandshake.createSession] - Detected dialect: W3C
14:25:54.341 INFO [RemoteSession$Factory.lambda$performHandshake$0] - Started new session ee6c68311f6b01946a0c9dadd993166e (org.openqa.selenium.chrome.ChromeDriverService)
Killed

PS: openjdk version “1.8.0_252”

Am i correct that you tried to run a web mobile test case on a mobile device?
If so, what is your current chrome version you use on the device
you might need to change the appium chrome driver to the one on your mobile device
http://appium.io/docs/en/writing-running-appium/web/chromedriver/

If this is not the case, let me know what was the test you were trying to execute

It wasn’t that, both echo $PATH and echo $JAVA_HOME show java8’s directory

Here is a sample of a failing implementation on a container:

    FROM circleci/openjdk:8u181-jdk-stretch-node-browsers

RUN npm set prefix=/home/circleci/npm

RUN npm install -g oxygen-cli

RUN cd /home/circleci/npm/bin  && curl -O http://selenium-release.storage.googleapis.com/3.5/selenium-server-standalone-3.5.3.jar

RUN mkdir /home/circleci/selenium-artifacts

EXPOSE 4444

RUN java -jar /home/circleci/npm/bin/selenium-server-standalone-3.5.3.jar -port 4444 -timeout 320 -browserTimeout 320 -log /home/circleci/selenium-artifacts/selenium.log &

COPY . /src

#ENTRYPOINT ["home/circleci/npm/bin/oxygen","src/tests/test1.js"]