Groups keyboard shortcuts have been updated
Dismiss
See shortcuts

dcm4chee-arc on docker, cant access wildfly on 9990, it says: you have not yet added any users.

1,073 views
Skip to first unread message

Clédio Moreira Paiva

unread,
Nov 4, 2019, 10:51:59 AM11/4/19
to dcm4che
Hello,

I've installed dcm4chee on docker sucessfully, but when i try to access wildfly console on ip:9990 it says:


Your WildFly Application Server is running.

However you have not yet added any users to be able to access the admin console.

To add a new user execute the add-user.sh script within the bin folder of your WildFly installation and enter the requested information.



i've searched and this file add-user.sh is under wildfly /bin dir. But i cant find the /bin dir under wildfly  /var/local/dcm4chee-arc/wildfly


I'm using centos 7, and i followed this instructions:


Thanks !

Gunter Zeilinger

unread,
Nov 5, 2019, 6:00:53 AM11/5/19
to dcm...@googlegroups.com


Sent with ProtonMail Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
--
You received this message because you are subscribed to the Google Groups "dcm4che" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm4che+u...@googlegroups.com.

Clédio Moreira Paiva

unread,
Nov 5, 2019, 1:41:58 PM11/5/19
to dcm4che
i don't knew about these environment variables, thank you very much. Problem solved.


Em terça-feira, 5 de novembro de 2019 08:00:53 UTC-3, gunterze escreveu:


Sent with ProtonMail Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Monday, November 4, 2019 4:51 PM, Clédio Moreira Paiva <cled...@gmail.com> wrote:

Hello,

I've installed dcm4chee on docker sucessfully, but when i try to access wildfly console on ip:9990 it says:


Your WildFly Application Server is running.

However you have not yet added any users to be able to access the admin console.

To add a new user execute the add-user.sh script within the bin folder of your WildFly installation and enter the requested information.



i've searched and this file add-user.sh is under wildfly /bin dir. But i cant find the /bin dir under wildfly  /var/local/dcm4chee-arc/wildfly


I'm using centos 7, and i followed this instructions:


Thanks !


--
You received this message because you are subscribed to the Google Groups "dcm4che" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm...@googlegroups.com.

habib sumon

unread,
Dec 22, 2019, 10:18:33 PM12/22/19
to dcm...@googlegroups.com
Hi all,

I am able to run on docker dmc4chee arc light of Run minimum set of archive services on a single host

Now i want to install weasis in dcm4chee-arc "minimum set of archive on single host" but  we know need to added any users to be able to access the admin console. we knew that secure archive service on a single host add any users by keycloak. but minimum set of archive services has no keycloak. 

i'v tried environment variable  of following link https://github.com/dcm4che-dockerfiles/dcm4chee-arc-psql#wildfly_admin_user-ignored-by-archive-versions-secured-by-keycloak  unfortunately i am not able to do. 

It's code but not sure yes or no.

Gunter Zeilinger

unread,
Dec 23, 2019, 5:21:53 AM12/23/19
to dcm...@googlegroups.com
Are you sure that there was not already a previous configuration directory in /var/local/dcm4chee-arc/wildfly before you launched the new archive container?

You may verify if the admin user was added by
$ sudo tail /var/local/dcm4chee-arc/wildfly/configuration/mgmt-users.properties
#
#$REALM_NAME=ManagementRealm$ This line is used by the add-user utility to identify the realm name already used in this file.
#
# On start-up the server will also automatically add a user $local - this user is specifically
# for local tools running against this AS installation.
#
# The following illustrates how an admin user could be defined, this
# is for illustration only and does not correspond to a usable password.
#
admin=c22052286cd5d72239a90fe193737253

You may also invoke

$ docker exec -it arc /opt/wildfly/bin/add-user.sh


to add a Management User afterwards.

Sent with ProtonMail Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Monday, December 23, 2019 4:18 AM, habib sumon <habibsum...@gmail.com> wrote:

Hi all,

I am able to run on docker dmc4chee arc light of Run minimum set of archive services on a single host

Now i want to install weasis in dcm4chee-arc "minimum set of archive on single host" but  we know need to added any users to be able to access the admin console. we knew that secure archive service on a single host add any users by keycloak. but minimum set of archive services have no keycloak. 

i'v tried environment variable  of following link https://github.com/dcm4che-dockerfiles/dcm4chee-arc-psql#wildfly_admin_user-ignored-by-archive-versions-secured-by-keycloak   unfortunately i am not able to do. 

This my code but not sure yes or no.

$ 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" \
   -e WILDFLY_ADMIN_USER=admin \
           -e WILDFLY_ADMIN_PASSWORD=admin \
           -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.20.0

On Monday, November 4, 2019 at 9:51:59 PM UTC+6, Clédio Moreira Paiva wrote:
Hello,

I've installed dcm4chee on docker sucessfully, but when i try to access wildfly console on ip:9990 it says:


Your WildFly Application Server is running.

However you have not yet added any users to be able to access the admin console.

To add a new user execute the add-user.sh script within the bin folder of your WildFly installation and enter the requested information.



i've searched and this file add-user.sh is under wildfly /bin dir. But i cant find the /bin dir under wildfly  /var/local/dcm4chee-arc/wildfly


I'm using centos 7, and i followed this instructions:


Thanks !
--
You received this message because you are subscribed to the Google Groups "dcm4che" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm4che+u...@googlegroups.com.

Ahasan Habib

unread,
Dec 24, 2019, 6:05:11 AM12/24/19
to dcm...@googlegroups.com
Thank's a lot for you cooperation , i got successes.

On Monday, November 4, 2019 at 9:51:59 PM UTC+6, Clédio Moreira Paiva wrote:
Hello,

I've installed dcm4chee on docker sucessfully, but when i try to access wildfly console on ip:9990 it says:


Your WildFly Application Server is running.

However you have not yet added any users to be able to access the admin console.

To add a new user execute the add-user.sh script within the bin folder of your WildFly installation and enter the requested information.



i've searched and this file add-user.sh is under wildfly /bin dir. But i cant find the /bin dir under wildfly  /var/local/dcm4chee-arc/wildfly


I'm using centos 7, and i followed this instructions:


Thanks !


--
You received this message because you are subscribed to the Google Groups "dcm4che" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm4che+unsubscribe@googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "dcm4che" group.
Reply all
Reply to author
Forward
Message has been deleted
Message has been deleted
0 new messages