Name

rmiregistry: The Java RMI Object Registry — JDK 1.1 and later

Synopsis

rmiregistry [ port ]

Description

The rmiregistry command starts a remote object naming registry on the current host. The RMI registry binds remote objects to names, so that remote clients can request object references by name. It uses the object references to invoke methods.

Internally, the rmiregistry command uses the java.rmi.registry.LocateRegistry class to instantiate a registry object. If no port is provided, the default port for the registry is 1099. Typically, the registry is run in the background on a server and remains running for the lifetime of the objects it contains. If the registry crashes, and the registry is running in a separate Java VM from the actual remote objects, the remote objects is still available over RMI, and any remote references to these objects that existed before the crash are still valid. However, all the name bindings the objects had in the registry are lost and need to be recreated after a new registry is started.

Options

-J[javaoption]

Anything immediately following the -J is passed as an option to the underlying Java interpreter. There should be no spaces between the -J and the option to be passed to the interpreter.

Environment

CLASSPATH

An ordered list of directories, ZIP files, and/or JAR files the rmiregistry command uses to look for classes. This list is separated by colons in Unix environments and semicolons in Windows environments. It is searched, in order, for a given ...

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.