Question : JBoss security: closing unecessary ports

command: "netstat -tulpn | grep java" gives me the listing bellow.
these are all jboss open ports. some ports listens to localhost and others listens to all interfaces like the port:
tcp        0      0 0.0.0.0:8942            0.0.0.0:*               LISTEN      10333/java
I don't know why jboss would listen to all interfaces, are these ports necessary?

Thanks

AbdellahT
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:3873          0.0.0.0:*               LISTEN      10333/java
tcp        0      0 127.0.0.1:8009          0.0.0.0:*               LISTEN      10333/java
tcp        0      0 127.0.0.1:1098          0.0.0.0:*               LISTEN      10333/java
tcp        0      0 127.0.0.1:1099          0.0.0.0:*               LISTEN      10333/java
tcp        0      0 0.0.0.0:8942            0.0.0.0:*               LISTEN      10333/java
tcp        0      0 127.0.0.1:8080          0.0.0.0:*               LISTEN      10333/java
tcp        0      0 127.0.0.1:8083          0.0.0.0:*               LISTEN      10333/java
tcp        0      0 0.0.0.0:7765            0.0.0.0:*               LISTEN      10333/java
tcp        0      0 0.0.0.0:27862           0.0.0.0:*               LISTEN      10333/java
tcp        0      0 127.0.0.1:4444          0.0.0.0:*               LISTEN      10333/java
tcp        0      0 127.0.0.1:8093          0.0.0.0:*               LISTEN      10333/java
tcp        0      0 127.0.0.1:4445          0.0.0.0:*               LISTEN      10333/java
tcp        0      0 127.0.0.1:4446          0.0.0.0:*               LISTEN      10333/java

Answer : JBoss security: closing unecessary ports

there is a nice document describing which services you can disable on jboss: http://www.jboss.org/community/docs/DOC-10217
check part slimming in this document
Random Solutions  
 
programming4us programming4us