confluentinc / cp-demo

Confluent Platform Demo including Apache Kafka, ksqlDB, Control Center, Schema Registry, Security, Schema Linking, and Cluster Linking
Apache License 2.0
38 stars 323 forks source link

MDS fails to start when running ./scripts/start.sh #274-----Fails after 120 seconds wait time #384

Closed GEETAREDDYK closed 3 years ago

GEETAREDDYK commented 3 years ago

I tried what @robcowart did by increasing the wait time to 120 seconds for my instance. Still the same. My MacBook$ CLEAN=true ./scripts/start.sh ./scripts/start.sh: line 5: /Users/IcyRoad/cp-demo/scripts/env.sh: No such file or directory

WARNING: Did you remember to increase the memory available to Docker to at least 8GB (default is 2GB)? Demo may otherwise not work properly.

Stopping tools ... done Stopping zookeeper ... done Stopping openldap ... done Removing tools ... done Removing kafka2 ... done Removing kafka1 ... done Removing zookeeper ... done Removing openldap ... done Removing network cp-demo_default ./scripts/start.sh: line 24: clean_demo_env: command not found

Environment parameters REPOSITORY= CONNECTOR_VERSION= C3_KSQLDB_HTTPS= CLEAN=true

./scripts/start.sh: line 38: create_certificates: command not found Creating network "cp-demo_default" with the default driver Creating openldap ... done openldap is up-to-date Creating zookeeper ... done Creating kafka1 ... done Creating kafka2 ... done Creating tools ... done Waiting up to 120 seconds for MDS to start .....................

ybyzek commented 3 years ago

MDS won't start because of these other errors:

./scripts/start.sh: line 5: /Users/IcyRoad/cp-demo/scripts/env.sh: No such file or directory

./scripts/start.sh: line 24: clean_demo_env: command not found

./scripts/start.sh: line 38: create_certificates: command not found

Please note Prerequisities where this has been validated: https://docs.confluent.io/platform/current/tutorials/cp-demo/docs/on-prem.html#prerequisites

GEETAREDDYK commented 3 years ago

I have simply uninstalled everything and reinstalled, and pruned all the images/volumes. That did the magic and got the MDS services set up shown me the GREEN check mark.

Waiting up to 120 seconds for MDS to start ........✔

Thank you for your response.