hi, I have installed signoz locally via Docker com...
# support
s
hi, I have installed signoz locally via Docker compose on m1 mac. All services are up and running. Able to access the frontend, however XHR call on /signup is pending, I don't see it in the Logs of the frontend docker also. How can I fix this?
2023-03-18 00:11:39 172.18.0.1 - - [17/Mar/2023:18:41:39 +0000] "POST /api/v1/register HTTP/1.1" 499 0 "<http://localhost:3301/signup>" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36" "-"
I see this in the Docker frontend logs
s
This is unexpected, are you sure all the services are running?
s
Copy code
🟡 Starting the SigNoz containers. It may take a few minutes ...

[+] Running 9/9
 ⠿ Container load-hotrod                                Running                                                                                                                                                                                                                                                               0.0s
 ⠿ Container hotrod                                     Running                                                                                                                                                                                                                                                               0.0s
 ⠿ Container zookeeper-1                                Running                                                                                                                                                                                                                                                               0.0s
 ⠿ Container clickhouse                                 Healthy                                                                                                                                                                                                                                                               0.6s
 ⠿ Container query-service                              Healthy                                                                                                                                                                                                                                                               1.2s
 ⠿ Container clickhouse-setup-otel-collector-metrics-1  Running                                                                                                                                                                                                                                                               0.0s
 ⠿ Container clickhouse-setup-alertmanager-1            Running                                                                                                                                                                                                                                                               0.0s
 ⠿ Container frontend                                   Running                                                                                                                                                                                                                                                               0.0s
 ⠿ Container clickhouse-setup-otel-collector-1          Running                                                                                                                                                                                                                                                               0.0s
Copy code
(base) ➜  deploy git:(main) docker-compose -f docker/clickhouse-setup/docker-compose.yaml up -d
[+] Running 9/9
 ⠿ Container hotrod                                     Running                                                                                                                                                                                                                                                               0.0s
 ⠿ Container zookeeper-1                                Running                                                                                                                                                                                                                                                               0.0s
 ⠿ Container load-hotrod                                Running                                                                                                                                                                                                                                                               0.0s
 ⠿ Container clickhouse                                 Healthy                                                                                                                                                                                                                                                               0.6s
 ⠿ Container clickhouse-setup-otel-collector-metrics-1  Running                                                                                                                                                                                                                                                               0.0s
 ⠿ Container query-service                              Healthy                                                                                                                                                                                                                                                               1.1s
 ⠿ Container clickhouse-setup-otel-collector-1          Running                                                                                                                                                                                                                                                               0.0s
 ⠿ Container clickhouse-setup-alertmanager-1            Running                                                                                                                                                                                                                                                               0.0s
 ⠿ Container frontend                                   Running                                                                                                                                                                                                                                                               0.0s
(base) ➜  deploy git:(main)
Looks like everything is up and running fine
s
What do query-service logs show?
s
Looks like there is some kind of panic runtime error. I feel like there is some configuration conflict with my existing clickhouse containers. Not sure about this.
s
It’s unable to connect to ClickHouse. Please make sure it’s running available for connections.
s
There are two
clickhouse-*
which of these is it trying to connect to?
also what port does clickhouse need to be running on?
s
Those
clickhouse-setup-*
are not ClickHouse instances, they are collector instances. Clickhouse runs on 9000/8123 for native/http interface.
s
Thanks, I manually started clickhouse container and then all other containers were able to run. Pressing ▶️ button against the existing signoz docker container in Docker Desktop app starts containers hapazhardly I think? Starting Signoz via docker-compose command in terminal, starts up all containers in the order they need to be I guess?
s
Yes