Docker server not updating

30 views
Skip to first unread message

Thiago Falcão

unread,
Feb 4, 2020, 8:53:12 AM2/4/20
to dcm4che
Hello. I've been using a docker server for some years now. It happens the server had to be shut for a while (some months) and after turning it on again (with no changes to network nor anything else) it is not working as it used anymore. Back then, the images used to be sent from the CR to server almost instantly and now images are taking so long and, sometimes, images are not sent to the server. I was looking into the wildfly log and I found something weird.

2020-02-04 10:47:33,457 INFO  [org.dcm4che3.net.Association] (EE-ManagedExecutorService-default-Thread-23) DCM4CHEE<-CLASSIC_EV(510) << A-ASSOCIATE-AC
2020-02-04 10:47:33,640 INFO  [org.dcm4che3.net.Association] (EE-ManagedExecutorService-default-Thread-23) DCM4CHEE<-CLASSIC_EV(510) >> A-RELEASE-RQ
2020-02-04 10:47:33,640 INFO  [org.dcm4che3.net.Association] (EE-ManagedExecutorService-default-Thread-23) DCM4CHEE<-CLASSIC_EV(510) << A-RELEASE-RP
2020-02-04 10:47:33,691 INFO  [org.dcm4che3.net.Association] (EE-ManagedScheduledExecutorService-default-Thread-8) DCM4CHEE<-CLASSIC_EV(510): close Socket[addr=/10.42.177.146,port=2476,localport=11112]
2020-02-04 10:47:35,644 INFO  [org.dcm4che3.net.Connection] (EE-ManagedExecutorService-default-Thread-2) Accept connection Socket[addr=/10.42.177.146,port=2477,localport=11112]
2020-02-04 10:47:35,644 INFO  [org.dcm4che3.net.Association] (EE-ManagedExecutorService-default-Thread-23) DCM4CHEE<-CLASSIC_EV(511) >> A-ASSOCIATE-RQ
2020-02-04 10:47:35,644 INFO  [org.dcm4che3.net.Association] (EE-ManagedExecutorService-default-Thread-23) DCM4CHEE<-CLASSIC_EV(511) << A-ASSOCIATE-AC
2020-02-04 10:47:35,904 INFO  [org.dcm4che3.net.Association] (EE-ManagedExecutorService-default-Thread-23) DCM4CHEE<-CLASSIC_EV(511) >> A-RELEASE-RQ
2020-02-04 10:47:35,904 INFO  [org.dcm4che3.net.Association] (EE-ManagedExecutorService-default-Thread-23) DCM4CHEE<-CLASSIC_EV(511) << A-RELEASE-RP
2020-02-04 10:47:35,954 INFO  [org.dcm4che3.net.Association] (EE-ManagedScheduledExecutorService-default-Thread-3) DCM4CHEE<-CLASSIC_EV(511): close Socket[addr=/10.42.177.146,port=2477,localport=11112]
2020-02-04 10:47:38,492 INFO  [org.dcm4che3.net.Connection] (EE-ManagedExecutorService-default-Thread-2) Accept connection Socket[addr=/10.42.177.146,port=2478,localport=11112]
2020-02-04 10:47:38,504 INFO  [org.dcm4che3.net.Association] (EE-ManagedExecutorService-default-Thread-23) DCM4CHEE<-CLASSIC_EV(512) >> A-ASSOCIATE-RQ
2020-02-04 10:47:38,504 INFO  [org.dcm4che3.net.Association] (EE-ManagedExecutorService-default-Thread-23) DCM4CHEE<-CLASSIC_EV(512) << A-ASSOCIATE-AC
2020-02-04 10:47:38,742 INFO  [org.dcm4che3.net.Association] (EE-ManagedExecutorService-default-Thread-23) DCM4CHEE<-CLASSIC_EV(512) >> A-RELEASE-RQ
2020-02-04 10:47:38,743 INFO  [org.dcm4che3.net.Association] (EE-ManagedExecutorService-default-Thread-23) DCM4CHEE<-CLASSIC_EV(512) << A-RELEASE-RP
2020-02-04 10:47:38,793 INFO  [org.dcm4che3.net.Association] (EE-ManagedScheduledExecutorService-default-Thread-5) DCM4CHEE<-CLASSIC_EV(512): close Socket[addr=/10.42.177.146,port=2478,localport=11112]

This is part of the log. It keep changing ports and not sending/receiving images. I don't know what is happening and how to troubleshoot it. I need some help here. Anyone?

I'm using the minimum set of archive services on a single host.

Gunter Zeilinger

unread,
Feb 4, 2020, 9:02:22 AM2/4/20
to dcm...@googlegroups.com
There is not any attempt from CLASSIC_EV to send any image. Increase level of Logging Category org.dcm4che3.net.Association to DEBUG, to see which Presentation Contexts are offered by CLASSIC_EV in the A-ASSOCIATE-RQ and which are accepted by DCM4CHEE in the returned A-ASSOCIATE-AC.


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.

Thiago Falcão

unread,
Feb 4, 2020, 9:09:48 AM2/4/20
to dcm4che
That sounds weird because if I go to CLASSIC_EV, there are images from a week ago in the queue to be sent to the server.

I'm trying to troubleshoot but I am really confused to what is happening.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm...@googlegroups.com.

Thiago Maltempi

unread,
Feb 4, 2020, 9:09:50 AM2/4/20
to dcm4che
Hey Thiago,

I don't know what might happening in your case, but here are some troubleshooting ideas:

- Do you have the LDAP server volumes monted to your host machine? In case you didn't mount, probably you lost your configuration data, in other words, If you did some manual configuration using UI in this meantime, probably you lost it.
- Maybe the other end is causing the issue. Try to send an simple Dicom file using dcmsend (from dcmtk or dcm4che tools) command from your machine and see if you get same results.
- Try to attach a sniffer to your network. TcpDump will help you with that. If you are using Windows, Wireshark is a good option.

I hope it helps!

Thiago Falcão

unread,
Feb 4, 2020, 9:16:55 AM2/4/20
to dcm4che
I'll look into it. Thanks.
Reply all
Reply to author
Forward
0 new messages