Closed mkp-bartsch closed 3 years ago
A short update. I got an environment up and running. So far everything seems to be stable.
Nevertheless, the log of the Conductor server stops after the first entries:
Starting Conductor server Property file: config.properties config.properties Using 'config.properties' Using java options config:
So in case of an error, you can only guess where the problem is.
Does anyone have an idea what the problem is? I think the problem exists with all current docker-based conductor server images.
I have the same issue. Server is up and running but nothing in the docker log
Same issue here. Running from ./gradlew bootRun
works, but docker-compose up
is not
The logs are not exposed to the console, it should be available in /app/logs/server.log
inside the docker container instance.
Are you not able to see the server logs there?
By the way, for the whole thing to work - you will need Elasticsearch up and running as well as the option is now enabled by default. Check the config.properties
files on the URL it tries to connect.
If you don't have ES, you will need to disable the indexing via a property. The downside to disabling that is the UI search functions won't work.
If you are running this in an M1 mac, you might run into trouble running ES6 docker container as the containers is based on x86 arch and will not work with arm64 smoothly.
Quick update: I'll try looking for server logs there later tonight.
I couldn't get the server up and running with docker compose up -d
in the docker
directory and had the issue mentioned here https://github.com/Netflix/conductor/issues/2540#issuecomment-953667972 where the server was seemingly up but wasn't responding to me trying to hit it via the API or the health check. Elasticsearch was up and responding to pings.
However, I did get things up and running using docker-compose -f docker-compose.yaml -f docker-compose-postgres.yaml up -d
after a bit and it's still working now.
The logs are not exposed to the console, it should be available in
/app/logs/server.log
inside the docker container instance.Are you not able to see the server logs there?
By the way, for the whole thing to work - you will need Elasticsearch up and running as well as the option is now enabled by default. Check the
config.properties
files on the URL it tries to connect.If you don't have ES, you will need to disable the indexing via a property. The downside to disabling that is the UI search functions won't work.
If you are running this in an M1 mac, you might run into trouble running ES6 docker container as the containers is based on x86 arch and will not work with arm64 smoothly.
Thank you for the explanation.
With the command docker-compose -f docker-compose.yaml -f docker-compose-postgres.yaml up
the environment works. But the log remains in the console in any case.
I have checked the /app/logs/server.log
file. In it is the complete log.
In the Conductor version 2.x this log was printed in the console. This was always very helpful in case of an error and it would be great if this also happens in version 3.x!
Hey - quick update - if you need the logs to show up on the console you can delete the logs redirect on this startup.sh command. Specifically this part:
> /app/logs/server.log
https://github.com/Netflix/conductor/blob/main/docker/serverAndUI/bin/startup.sh#L36
This is assuming you are using the serverAndUI
docker.
Try this out locally on Docker desktop and let us know if its working
Hello, we are using conductor for orchestrating microservices in our company and have some issues while setting up the latest version v.3.x.
Maybe you can help me:
Short description: After building and starting the server and ui image (docker) from the latest tag, the server stops starting after "Using java options config:". This behaviour is independent of the configurations in the config-file.
Steps taken to reproduce the error:
Expected behaviour:
Things that I have already tried:
Do any of you have a working local configuration where this error does not occur and the server starts properly?
Until now we used the version 2.3.x for our productive environment. We would like to upgrade to latest version because you fixed some bugs.
Thank you in advance!