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

May I know what port is used by Java RMI connection?

If I want to connect a Java client application to a Java server application using RMI connection, what port I need to open at the server machine so that the client application can connect to it?

I want to set up a firewall in the server machine but I don't know which port I should open.

Thanks.

share|improve this question

5 Answers

up vote 3 down vote accepted

RMI generally won't work over a firewall, since it uses unpredictable ports (it starts off on 1099, and then runs off with a random port after that).

In these situations, you generally need to resort to tunnelling RMI over HTTP, which is described well here.

share|improve this answer
Thank you very much! Have you read the answer from El Guapo at above? Do you think that is a workable alternative solution? Can I set the port at the server to a fixed port using the rmiregistry command? – kwc Jun 18 '10 at 16:50
@kwc: You can set the RMI registry to a fixed port, yes, but I don't believe you can control individual client-server connections. – skaffman Jun 18 '10 at 21:10

By default, RMI uses port 1099

share|improve this answer
But I heard from somewhere that some Java application connections are set to use a random port. Do you have any idea what kind of Java connection is that? Does it related to Java RMI? Thanks. – kwc Jun 18 '10 at 16:27
1  
Yes and no, see stackoverflow.com/questions/1706685/… for more detail on this. – Kai Sternad Jun 18 '10 at 16:41

You typically set the port at the server using the rmiregistry command. You can set the port on the command line, or it will default to 1099

share|improve this answer
Can you show me how to use the rmiregistry command? – kwc Jun 18 '10 at 16:25
jajaj +1 nomás por el nick y la foto :) – OscarRyz Jun 18 '10 at 16:28
it's probably best to send you the link to the sun page with it: java.sun.com/docs/books/tutorial/rmi/running.html if it's a linux box just make sure you have the $JAVA_HOME/bin in your path and you'll be able to run the command – El Guapo Jun 18 '10 at 16:32

Geez, can't believe google is down again. anyway, seems to work from my box, so here ya go:

Java RMI FAQ (firewall)

share|improve this answer

If you can modify the client, then have it print out the remote reference and you will see what port it's using. E.g.

ServerApi server = (ServerApi) registry.lookup(ServerApi.RMI_NAME);
System.out.println("Got server handle " + server);

will produce something like:

Got server handle Proxy[ServerApi,RemoteObjectInvocationHandler[UnicastRef [liveRef: [endpoint:172.17.3.190:9001,objID:[-7c63fea8:...

where you can see the port is 9001. If the remote class is not specifying the port, then it will change across reboots. If you want to use a fixed port then you need to make sure the remote class constructor does something like:

super(rmiPort)
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.