Unix and Linux Discussions Tagged with java |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
13,892 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
15,846 |
Shell Programming and Scripting |
|
|
|
3 |
3,439 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
8,857 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
2,006 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
12,227 |
AIX |
|
|
|
3 |
5,008 |
Programming |
|
|
|
4 |
3,708 |
Programming |
|
|
|
0 |
2,470 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
2,226 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,216 |
Shell Programming and Scripting |
|
|
|
2 |
1,977 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
35,808 |
Shell Programming and Scripting |
|
|
|
2 |
2,176 |
Programming |
|
|
|
0 |
14,191 |
News, Links, Events and Announcements |
|
|
|
10 |
7,281 |
Windows & DOS: Issues & Discussions |
|
|
|
1 |
3,215 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
14,428 |
Programming |
|
|
|
6 |
6,510 |
Programming |
|
|
|
4 |
7,614 |
AIX |
|
|
|
2 |
3,360 |
AIX |
|
|
|
4 |
2,234 |
Programming |
|
|
|
15 |
9,818 |
Shell Programming and Scripting |
|
|
|
1 |
20,309 |
Programming |
|
|
|
2 |
4,304 |
Programming |
|
|
|
21 |
7,147 |
Programming |
|
|
|
3 |
6,740 |
AIX |
|
|
|
2 |
4,979 |
Programming |
|
|
|
3 |
2,642 |
Programming |
|
|
|
2 |
5,403 |
SCO |
|
|
|
5 |
2,944 |
UNIX for Dummies Questions & Answers |
|
|
|
12 |
13,805 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,488 |
UNIX for Dummies Questions & Answers |
|
|
|
19 |
20,135 |
Shell Programming and Scripting |
|
|
|
5 |
17,730 |
Red Hat |
|
|
|
1 |
24,638 |
Solaris |
|
|
|
4 |
7,794 |
Solaris |
|
|
|
2 |
7,072 |
Shell Programming and Scripting |
|
|
|
0 |
3,354 |
Ubuntu |
|
|
|
1 |
3,666 |
Homework & Coursework Questions |
rmiregistry(1) General Commands Manual rmiregistry(1)
NAME
rmiregistry - Java remote object registry
SYNOPSIS
rmiregistry [ port ]
DESCRIPTION
The rmiregistry command creates and starts a remote object registry on the specified port on the current host. If port number is omitted,
the registry is started on port 1099. The rmiregistry command produces no output and is typically run in the background. For example:
example% rmiregistry &
A remote object registry is a bootstrap naming service that is used by RMI servers on a host to bind remote objects to names. Clients can
then look up remote objects and make remote method invocations.
The registry is typically used to locate the first remote object on which an application needs to invoke methods. That object in turn pro-
vides application-specific support for finding other objects.
The methods of the java.rmi.registry.LocateRegistry class are used to get a registry operating on a particular host or host and port.
The URL-based methods of the java.rmi.Naming class operate on a registry and can be used to look up a remote object, bind a simple (string)
name to a remote object, rebind a new name to a remote object (overriding the old binding), unbind a remote object, and list the URLs bound
in the registry.
OPTIONS
The following option is supported:
-Joption Used in conjunction with any java option, this option passes option (no spaces between -J and option) on to the java inter-
preter.
SEE ALSO
See (or search java.sun.com) for the following:
java.rmi.Naming @
http://java.sun.com/j2se/1.5/docs/api/java/rmi/Naming.html
java.rmi.registry.LocateRegistry @
http://java.sun.com/j2se/1.5/docs/api/java/rmi/registry/LocateRegistry.html
23 Apr 2001 rmiregistry(1)