fast-data-dev
fast-data-dev copied to clipboard
Problem when running WEB_ONLY
I wanted to run the Landoop front end inspecting the streaming samples from Confluent.
Now, I can run the command line tool (after editing the port):
docker run --rm -it --net=host landoop/fast-data-dev kafka-topics --zookeeper localhost:32181 --list
Running the full stack also works, when the Confluent docker is not running.
But when I try to run "web only", this fails:
docker run --rm -it --net=host -e WEB_ONLY="true" -e ZK_PORT=32181 landoop/fast-data-dev
I get this message: Web only mode. Kafka services will be disabled.
But then this error: cp: target '/etc/supervisord.d/08-logs-to-kafka.conf' is not a directory
Then it seems the container tries to start the services, failing at this and retrying continuously. The web server is started and seems to work, connecting to my Kafka service and getting something.
Expected behavior: Should just start the web front-end and connect to the Zookeeper instance. Not launch the other services.
Thanks for the report and sorry it took me so long to answer. This is probably a bug on our side, I'll investigate it when I find some time.
Until then, you could use our separate images (landoop/kafka-topics-ui, landoop/kafka-connect-ui, landoop/schema-registry-ui). We actually suggest them over fast-data-dev if all you want to run is the UIs.
Of course web only mode should work. I'll look at it.
Thanks!
Ok, thank you.
I'll try the other images in the meantime.
Hi, @andmarios is this issue resolved?. I'm also getting same error.