1745830 Members
3912 Online
108723 Solutions
New Discussion юеВ

Jboss network port

 
SOLVED
Go to solution
VICBUR1507
Frequent Advisor

Jboss network port

Hello Mates!
I have a problem with the jboss configuration after installation, add the entry in the services file to test this by performing a telnet
8080 but does not connect, the strange thing is that if I do a telnet localhost 8080 and if made the connection ... anyone know how I can fix this?
4 REPLIES 4
Steven E. Protter
Exalted Contributor
Solution

Re: Jboss network port

Shalom,

First see if any service is listening on port 8080

netstat -an | grep 8080

post.

jboss runs on HP-UX?

What OS are we talking about here.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
VICBUR1507
Frequent Advisor

Re: Jboss network port

netstat -an | grep 8080
tcp 0 0 127.0.0.1.8080 *.* LISTEN

ps -ef | grep -i jboss
root 4469 3612 0 09:55:57 pts/ta 0:00 grep -i jboss
web 22648 22638 0 11:20:57 ? 58:18 /opt/java6/bin/IA64N/java -Dprogram.name=run.sh -server -Xms128m -Xmx512m -XX:MaxPermSize=256m -Dorg.jboss.resolver.warning=tru

My OS is hp-ux 11.23
rick jones
Honored Contributor

Re: Jboss network port

The listen endpoint for port 8080 is being bound explicitly to 127.0.0.1 - aka loopback. As such, it will only accept connections to 127.0.0.1 port 8080 and will not accept connections to any other local IP address and port 8080. Presumably there is a jboss configuration file telling it to do this rather than bind to "INADDR_ANY" or "wildcard" IP address to accept connections destined to any local IP address and port 8080. When that is done, the IP address on the listen endpoint entry in netstat -an output will appear as a "*"
there is no rest for the wicked yet the virtuous have no pillows
VICBUR1507
Frequent Advisor

Re: Jboss network port

Hey guys!
Thanks everybody. Rick You are right.

Regards,

VB