Page 1 of 1

Subsonic listening on odd ports?

PostPosted: Tue Jan 27, 2015 2:32 am
by Schnip
I have noticed that subsonic binds to some ipv6 ports. Actually I configured subsonic to only listen on port 4041 for SSL connections. Do you know why this happens?

Code: Select all
tcp6       0      0 :::9412                 :::*                    LISTEN
tcp6       0      0 :::58057                :::*                    LISTEN
tcp6       0      0 192.168.178.3:4041      :::*                    LISTEN
tcp6       0      0 192.168.178.3:38447     :::*                    LISTEN
tcp6       0      0 192.168.178.3:54038     :::*                    LISTEN

Re: Subsonic listening on odd ports?

PostPosted: Fri Jan 30, 2015 2:55 pm
by acroyear
Java/Jetty just does that. it has some internals that is uses for communication. So does Tomcat. Nothing to worry about. They're often dynamically allocated at run-time (within a range).

Re: Subsonic listening on odd ports?

PostPosted: Sat Jan 31, 2015 1:27 am
by Schnip
Thank you very much!