I CANNOT OPEN THE LOGIN SCREEN (https://<docker-host>:8443/dcm4chee-arc/ui2) OR (http://<docker-host>:8080/dcm4chee-arc/ui2) EVEN AFTER ADDING THE CLIENT id FROM KEYLOAK ????

427 views
Skip to first unread message

Madushan

unread,
Dec 12, 2021, 4:41:50 AM12/12/21
to dcm4che
Hellow,

I installed "Run secured archive services on a single host" using https://github.com/dcm4che/dcm4chee-arc-light/wiki/Run-secured-archive-services-on-a-single-host

I CANNOT OPEN THE LOGIN SCREEN (https://<docker-host>:8443/dcm4chee-arc/ui2) OR (http://<docker-host>:8080/dcm4chee-arc/ui2) EVEN AFTER ADDING THE CLIENT id  FROM KEYLOAK ????
K4.jpg
ALLOWED PORT VIA AWS FIREWALL (SECURITY GROUPS)
K5.jpg

I got problem from "Register the Archive UI as OIDC client in Keycloak:"

I log in to the KEYLOCK and given the CLIENTID as follows;

k1.jpg
k2.jpg
k3.jpg

Can I use my DNS instead of the IP?


PLEASE ADVISE ME TO GO FURTHER....WAITING FOR ANYBODY



Jose Hicks

unread,
Jan 22, 2022, 4:37:31 PM1/22/22
to dcm4che
Hello, try with NGINX in front so that from the internet you access through port 443.

Jose Hicks

unread,
Jan 31, 2022, 10:21:42 AM1/31/22
to dcm4che
Hi   I share these examples running dcm4chee behind OHIF, and the same dcm4chee both in cloud vps I can help you best regards

uno1.PNGdos2.PNG

Message has been deleted

Marius S

unread,
Feb 3, 2022, 1:37:50 AM2/3/22
to dcm4che
You should check your docker logs for dcm4chee, db and other containers for errors.

I had this setup and it was working on my test virtual machine with Ubuntu, however I remember I had to use correct versions.
Here is docker commands I used:

docker network create dcm4chee_default

docker run --network=dcm4chee_default --name ldap \
           -p 389:389 \
           -v /var/local/dcm4chee-arc/ldap:/var/lib/openldap/openldap-data \
           -v /var/local/dcm4chee-arc/slapd.d:/etc/openldap/slapd.d \
           -d dcm4che/slapd-dcm4chee:2.4.57-23.3
               
               
docker run --network=dcm4chee_default --name keycloak \
           -p 8880:8880 \
           -p 8843:8843 \
           -p 8990:8990 \
           -p 8993:8993 \
           -e HTTP_PORT=8880 \
           -e HTTPS_PORT=8843 \
           -e MANAGEMENT_HTTP_PORT=8990 \
           -e MANAGEMENT_HTTPS_PORT=8993 \
           -e KEYCLOAK_WAIT_FOR=ldap:389 \
           -v /etc/localtime:/etc/localtime:ro \
           -v /etc/timezone:/etc/timezone:ro \
           -v /var/local/dcm4chee-arc/keycloak:/opt/keycloak/standalone \
           -d dcm4che/keycloak:11.0.3                   

docker run --restart=always --network=dcm4chee_default --name db \
           -p 5432:5432 \
           -e POSTGRES_DB=pacsdb \
           -e POSTGRES_USER=pacs \
           -e POSTGRES_PASSWORD=pacs \
           -v /etc/localtime:/etc/localtime:ro \
           -v /etc/timezone:/etc/timezone:ro \
           -v /var/local/dcm4chee-arc/db:/var/lib/postgresql/data \
           -d dcm4che/postgres-dcm4chee:12.5-23                         
                   
docker run --network=dcm4chee_default --name arc \
           -p 8080:8080 \
           -p 8443:8443 \
           -p 9990:9990 \
           -p 9993:9993 \
           -p 11112:11112 \
           -p 2762:2762 \
           -p 2575:2575 \
           -p 12575:12575 \
           -e POSTGRES_DB=pacsdb \
           -e POSTGRES_USER=pacs \
           -e POSTGRES_PASSWORD=pacs \
           -e WILDFLY_WAIT_FOR="ldap:389 db:5432" \
           -v /etc/localtime:/etc/localtime:ro \
           -v /etc/timezone:/etc/timezone:ro \
           -v /var/local/dcm4chee-arc/wildfly:/opt/wildfly/standalone \
           -d dcm4che/dcm4chee-arc-psql:5.23.3



Reply all
Reply to author
Forward
0 new messages