AODT 1.4 Installation Issue - Address Already in Use

Hi all,

When I ran the script install.sh, I got the following errors:

Desktop shortcut created: /home/justin/Desktop/Notebook.desktop
[+] Running 0/1
⠹ Container aodt_sim-notebook-1 Starting0.2s
Error response from daemon: failed to set up container networking: driver failed programming external connectivity on endpoint aodt_sim-notebook-1 (583fbed37328440809b42ac9a5141293321341c080a7f00ebfd5dfc56cbf14d5): failed to bind host port for 0.0.0.0:8888:172.18.0.2:8088/tcp: address already in use
[+] Running 3/4
✔ Container backend-nats-server-1 Healthy0.5s
✔ Container backend-minio-1 Running0.0s
✔ Container backend-gis-1 Running0.0s
⠴ Container backend-clickhouse-1 Starting0.5s
Error response from daemon: failed to set up container networking: driver failed programming external connectivity on endpoint backend-clickhouse-1 (ebe7cd5d34900e4ab1bb21db06a61d7cf3062738d0df4c56008b77900b63f672): failed to bind host port for 0.0.0.0:9000:172.19.0.5:9000/tcp: address already in use

It looks like there were IP address or port conflicts among these backend containers.

Does anyone have suggestions on how to resolve this?

Thanks.

1 Like

Run the following command to search other processes which use the ports 8888 and 9000 respectively, and then close them first.

sudo ss -lntp | grep -E ‘:(8888|9000)\s’

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.