Centos 7 DICOM Listening port not active

Trouble during PacsOne Server installations
Post Reply
gf_med
Centos 7 DICOM Listening port not active

Post by gf_med » Thu Sep 10, 2015 5:39 pm

I have installed PacsOne on Cnetos 7. I can login to the server. The log states that listening port 104 is enabled for DICOM, but netstat shows it is not listening. below is a snip from netstat, PacsOne.ini, curent log

netstat -l

Code: Select all

Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State
tcp        0      0 0.0.0.0:ssh             0.0.0.0:*               LISTEN
tcp        0      0 localhost:ipp           0.0.0.0:*               LISTEN
tcp        0      0 localhost:smtp          0.0.0.0:*               LISTEN
tcp6       0      0 [::]:mysql              [::]:*                  LISTEN
tcp6       0      0 [::]:http               [::]:*                  LISTEN
tcp6       0      0 [::]:ssh                [::]:*                  LISTEN
tcp6       0      0 localhost:ipp           [::]:*                  LISTEN
tcp6       0      0 localhost:smtp          [::]:*                  LISTEN
udp        0      0 0.0.0.0:bootpc          0.0.0.0:*
udp        0      0 0.0.0.0:28255           0.0.0.0:*
udp        0      0 0.0.0.0:49772           0.0.0.0:*
udp        0      0 0.0.0.0:ntp             0.0.0.0:*
udp        0      0 0.0.0.0:mdns            0.0.0.0:*
udp        0      0 localhost:323           0.0.0.0:*
udp6       0      0 [::]:ntp                [::]:*
udp6       0      0 localhost:323           [::]:*
udp6       0      0 [::]:22991              [::]:*
raw6       0      0 [::]:ipv6-icmp          [::]:*        
PacsOne.ini

Code: Select all

 
ApplicationEntityTitle = PacsOne
ServerPortNumber = 104
LogDirectory = /home/pacsone/log/
StorageFormat = Native
Database = pacsone
lhost
MysqlPort = 3306
MysqlSocket = /var/lib/mysql/mysql.sock
MySqlUser = removed
MySqlPassword = removed
ThreadPoolSize = 2
LogLevel = Information
SessionTimeout = 60
DatabaseHost = localhost
WorklistPollInterval = 10
ExportThreadPriority = Low
ImportThreadPriority = Low
HL7PortNumber = 7777
HL7SessionReadTimeout = 300
Current Log

Code: Select all

Thu Sep 10 10:14:32 2015 INFO - Server Socket: 4 created successfully
Thu Sep 10 10:14:32 2015 INFO - Socket: 4 bind to Port: 104
Thu Sep 10 10:14:32 2015 INFO - Worker Thread: 140512945886976 running
Thu Sep 10 10:14:32 2015 INFO - Worker Thread: 140512954279680 running
Anyone know where to find a more detailed log, or how to figure out why the service is not listening?

gf_med

Re: Centos 7 DICOM Listening port not active

Post by gf_med » Thu Sep 10, 2015 6:02 pm

Odd. I restarted the server twice, and can now telnet to port 104. netstat still does not report an open port, but it is working.

pacsone
Site Admin
Posts:3149
Joined:Tue Sep 30, 2003 2:47 am

Re: Centos 7 DICOM Listening port not active

Post by pacsone » Fri Sep 11, 2015 3:12 pm

You need to specify the "-all" option (-a) for the NETSTAT command (otherwise it'll list only those ports being listened to by the current/logged-in user):

Code: Select all

# netstat -tan

Post Reply