Quartz Scheduler Configuration Guide : RMI Configuration
RMI Configuration
None of the primary properties are required, and all have reasonable defaults. When using Quartz via RMI, you need to start an instance of Quartz with it configured to "export" its services via RMI. You then create clients to the server by configuring a Quartz scheduler to "proxy" its work to the server.
Note:  
Some users experience problems with class availability (namely Job classes) between the client and server. To work through these problems you'll need an understanding of the RMI codebase and security managers. You may find the resources to be useful:
The description of RMI and codebase at http://www.kedwards.com/jini/codebase.html. (One of the important points is to realize that codebase is used by the client.)
The Java API docs on the RMISecurityManager.
Property Name
Required
Default Value
org.quartz.scheduler.rmi.export
no
false
org.quartz.scheduler.rmi.registryHost
no
'localhost'
org.quartz.scheduler.rmi.registryPort
no
1099
org.quartz.scheduler.rmi.createRegistry
no
'never'
org.quartz.scheduler.rmi.serverPort
no
random
org.quartz.scheduler.rmi.proxy
no
false
org.quartz.scheduler.rmi.export
Set to true if you want the Quartz Scheduler to export itself via RMI as a server.
org.quartz.scheduler.rmi.registryHost
The host at which the RMI Registry can be found (often localhost).
org.quartz.scheduler.rmi.registryPort
The port on which the RMI Registry is listening (usually 1099).
org.quartz.scheduler.rmi.createRegistry
Specifies how you want Quartz to cause the creation of an RMI Registry.
Use "false" or "never" if you don't want Quartz to create a registry (e.g., if you already have an external registry running).
Use "true" or "as_needed" if you want Quartz to first attempt to use an existing registry, and then fall back to creating one.
Use "always" if you want Quartz to attempt creating a Registry, and then fall back to using an existing one.
If a registry is created, it will be bound to port number in the given org.quartz.scheduler.rmi.registryPort property and org.quartz.rmi.registryHost should be "localhost".
org.quartz.scheduler.rmi.serverPort
The port on which the Quartz Scheduler service will bind and listen for connections. By default, the RMI service will randomly select a port as the scheduler is bound to the RMI Registry.
org.quartz.scheduler.rmi.proxy
To connect to (use) a remotely served scheduler, set the org.quartz.scheduler.rmi.proxy flag to true. You must also then specify a host and port for the RMI Registry process - which is typically 'localhost' port 1099.
Note:  
It does not make sense to set both org.quartz.scheduler.rmi.export and org.quartz.scheduler.rmi.proxyto true in the same config file. If you do, the export property will be ignored. Setting both properties to false is, of course, valid if you are not using Quartz via RMI.
Copyright © 2010-2016 Software AG, Darmstadt, Germany.

Product Logo |   Feedback