Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to connect from my Java application to a development server that has port 8088 closed which is used for RMI. I appreciate any help on how to open that port.

share|improve this question
Can you change 8088 to something more standard (e.g., 1099)? You might also want to check the sockets that are opened - some may be anonymous (i.e., random numbers). See stackoverflow.com/questions/56687/… – Bob Cross Oct 20 '08 at 16:00

2 Answers

Assuming

  • you want to allow access from everywhere
  • you want to allow access via the first ethernet device (eth0)
  • you want to allow access to port 8088 using tcp

then you could try running

iptables -I INPUT -i eth0 -p tcp --dport 8088 -j ACCEPT

as root.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.