Installation with Docker Swarm as per wiki failing #3771
neurorepro
started this conversation in
General
Replies: 1 comment
-
The issue seems entirely my fault for not paying enough attention to the first line of the wiki Ensure that there is a hostname entry in your DNS server for the Archive Node. I thought the IP of the node was enough to access the dcm4che swarm from the host, but the problem went away when i added the hostnames to the DNS on the host. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
I am trying to setup dcm4chee with Docker Swarm as per the wiki here, but the first verification at URL
https://<arc-node>:8843/admin/dcm4che/console
failed (blank webpage).To Reproduce
Steps to reproduce the behavior:
d4c-archive
,d4c-db
andd4c-logs
for the archive, database and elastic nodes respectively.d4c-archive
,ping d4c-logs
works)docker stack deploy -c docker-compose.yml dcm4chee
d4c-archive
, say W.X.Y.Zhttps://W.X.Y.Z:8843/admin/dcm4che/console
(althoughhttps://W.X.Y.Z:8843 show keycloak page
) whatever the browser (Chrome, Firefox, Chrome incognito window, ...)Additional context
I'm not sure the Docker Stack file (i.e.
docker-compose.yml
) shown in the wiki was tested because there was an error in it which prevented it to work properly (mode: host
was required by theoauth2-proxy
service to run, and this was missing in the stack file in the wiki). The one i used was:docker-compose.yml file used with Docker Stack (click arrow to see)
PS: I was not sure if
KEYCLOAK_WAIT_FOR: db:389 logstash:8514
should beKEYCLOAK_WAIT_FOR: d4c-db:389 d4c-logs:8514
, andWILDFLY_WAIT_FOR: ldap:389 db:5432 logstash:8514
should beWILDFLY_WAIT_FOR: d4c-db:389 d4c-db:5432 logstash:8514
, or if it doesn't matter since the docker internal DNS refer to the same IP as the host node's in a 1-replica swarm configuration.docker-compose.env file used
Beta Was this translation helpful? Give feedback.
All reactions