Unrecognized ports in wildfly

My standalone wildfly instance is listening to the following ports:

netstat -tulpn | grep 6116
tcp        0      0 0.0.0.0:8777                0.0.0.0:*                   LISTEN      6116/java           
tcp        0      0 0.0.0.0:10990               0.0.0.0:*                   LISTEN      6116/java           
tcp        0      0 0.0.0.0:41908               0.0.0.0:*                   LISTEN      6116/java           
tcp        0      0 127.0.0.1:8090              0.0.0.0:*                   LISTEN      6116/java   

I only recognizes 8777 and 8090. How can I find out what the other two ports are for? I used a company template to configure my standalone.xml file. So it could be that there is some subsystem or interface that I need to disable. I know the following:

  • it is standalone deployment (not managed domain)
  • I grep’ed all wildfly standalone config files (including standalone.xml) for those port numbers but yield nothing.
  • I tried this bin/jboss-cli.sh --controller=localhost:8090 -c command=":read-resource(include-runtime=true, recursive=true, recursive-depth=10)" | grep 10990 again yeild nothing.
  • I have been looking into the documentation but without a clue, it has been like searching a needle in heystack.

Is there a cli command to find out which component/interface is opening what ports? What’s the best way to start finding out what these ports are for?

Answer

Attribution
Source : Link , Question Author : hummingV , Answer Author : Community

Leave a Comment