Hello, Running the `datahub docker quickstart` I g...
# troubleshoot
m
Hello, Running the
datahub docker quickstart
I get the following error. (CentOS Linux 7 (Core) Kernel: Linux 3.10.0-957.el7.x86_64)
Copy code
zookeeper is up-to-date
mysql is up-to-date
Starting elasticsearch ... 
broker is up-to-date
Starting mysql-setup   ... 
datahub-gms is up-to-date
schema-registry is up-to-date
datahub_datahub-actions_1 is up-to-date
datahub-frontend-react is up-to-date
Starting elasticsearch ... error
WARNING: Host is already in use by another container

ERROR: for elasticsearch  Cannot start service elasticsearch: driver failed programming external connectivity on endpoint elasticsearch (30d2cd08b59735e4a2125ca934d92258aa187167918d4f135e29c776fc62978b): Error starting userland proxy: listen tcp4 0.0.0.0:9200: bind:
Starting mysql-setup   ... done

ERROR: for elasticsearch  Cannot start service elasticsearch: driver failed programming external connectivity on endpoint elasticsearch (30d2cd08b59735e4a2125ca934d92258aa187167918d4f135e29c776fc62978b): Error starting userland proxy: listen tcp4 0.0.0.0:9200: bind: address already in use
ERROR: Encountered errors while bringing up the project.
.............
Unable to run quickstart - the following issues were detected:
- elasticsearch-setup container is not present
- datahub-gms is running but not healthy
- elasticsearch is not running
No other docker images are installed
b
quickstart failed as not all the containers can start up (ES is complaining it cannot use port 9200 thus failed) try
docker ps
and see if there is a container that is already hogging 9200, else you could try the suggestions like the ones in this article https://www.baeldung.com/linux/docker-address-already-in-use
then something else is using 9200 on your machine
restart docker, maybe? ive no better idea
m
I tried it already 😞