Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "JavaGroups Service Properties"

(Created page with "==JavaGroups Remote Service Provider System Properties== The following are system properties used by the ECF JGroups distribution provider. To set to appropriate value, typi...")
 
Line 1: Line 1:
 
==JavaGroups Remote Service Provider System Properties==
 
==JavaGroups Remote Service Provider System Properties==
 
The following are system properties used by the ECF JGroups distribution provider.  To set to appropriate value, typically the value
 
would be specified on the command line.  For example:
 
 
<pre>
 
java ... -Djgroups.bind_addr=123.45.6.7 ...
 
</pre>
 
  
 
{|{{BMTableStyle}}
 
{|{{BMTableStyle}}
Line 15: Line 8:
 
! Default Value
 
! Default Value
 
|-
 
|-
| System property: jgroups.bind_addr&nbsp;&nbsp;
+
| System property: '''jgroups.bind_addr'''&nbsp;&nbsp;
 
| Bind address or hostname for JGroups channel used for remote service distribution
 
| Bind address or hostname for JGroups channel used for remote service distribution
 
| String&nbsp;&nbsp;
 
| String&nbsp;&nbsp;
 
| localhost&nbsp;&nbsp;
 
| localhost&nbsp;&nbsp;
 
|-
 
|-
| ecf.jgroups.manager.id&nbsp;&nbsp;
+
| '''ecf.jgroups.manager.id'''&nbsp;&nbsp;
 
| JavaGroups Id, which consists of:  jgroups:<jgroupsChannelName>
 
| JavaGroups Id, which consists of:  jgroups:<jgroupsChannelName>
 
| Stringnbsp;&nbsp;
 
| Stringnbsp;&nbsp;
| jgroups:ecf.jgroups.defaultGroupnbsp;&nbsp;
+
| '''jgroups:ecf.jgroups.defaultGroup'''&nbsp&nbsp;
 
|-
 
|-
| ecf.jgroups.manager.channelConfigProperty&nbsp;&nbsp;
+
| '''ecf.jgroups.manager.channelConfigProperty'''&nbsp;&nbsp;
| Config property for configuring a JGroups channel.  The value of this property is used to create a JChannel instance with code: ProtocolConfigurator configurator = ConfiguratorFactory.getStackConfigurator(<property value), and JChannel channel = new JChannel(configurator);
+
| Config property for configuring a JGroups channel.  The value of this property is used to create a JChannel instance:
 +
  ProtocolConfigurator con = ConfiguratorFactory.getStackConfigurator(&gt;property value&lt;), and return new JChannel(con);
 
| String&nbsp;&nbsp;
 
| String&nbsp;&nbsp;
 
| udp.xml&nbsp;&nbsp;
 
| udp.xml&nbsp;&nbsp;
 
|}
 
|}

Revision as of 21:01, 19 October 2019

JavaGroups Remote Service Provider System Properties

Property Name Description Type Default Value
System property: jgroups.bind_addr   Bind address or hostname for JGroups channel used for remote service distribution String   localhost  
ecf.jgroups.manager.id   JavaGroups Id, which consists of: jgroups:<jgroupsChannelName> Stringnbsp;  jgroups:ecf.jgroups.defaultGroup&nbsp 
ecf.jgroups.manager.channelConfigProperty   Config property for configuring a JGroups channel. The value of this property is used to create a JChannel instance:
 ProtocolConfigurator con = ConfiguratorFactory.getStackConfigurator(>property value<), and return new JChannel(con);
String   udp.xml  

Back to the top