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"

 
(7 intermediate revisions by the same user not shown)
Line 8: Line 8:
 
! Default Value
 
! Default Value
 
|-
 
|-
| System property: '''jgroups.bind_addr'''  
+
| System property: '''-Djgroups.bind_addr=<hostname or ip address>'''  
 
| 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  
 
| String  
| localhost  
+
| '''localhost'''  
 
|-
 
|-
 
| '''ecf.jgroups.manager.id'''  
 
| '''ecf.jgroups.manager.id'''  
| JavaGroups Id, which consists of:   jgroups:<jgroupsChannelName>
+
| JavaGroups Id, which consists of: jgroups:&lt;jgroupsChannelName&gt;
| Stringnbsp;&nbsp;
+
| String&nbsp;&nbsp;
| '''jgroups:ecf.jgroups.defaultGroup'''&nbsp&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:
 
| 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);
+
<pre>return new JChannel(ConfiguratorFactory.getStackConfigurator(&lt;property value&gt;));</pre>
 
| String&nbsp;&nbsp;
 
| String&nbsp;&nbsp;
| udp.xml&nbsp;&nbsp;
+
| '''udp.xml'''&nbsp;&nbsp;
 
|}
 
|}

Latest revision as of 21:07, 19 October 2019

JavaGroups Remote Service Provider System Properties

Property Name Description Type Default Value
System property: -Djgroups.bind_addr=<hostname or ip address>   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> String   jgroups:ecf.jgroups.defaultGroup  
ecf.jgroups.manager.channelConfigProperty   Config property for configuring a JGroups channel. The value of this property is used to create a JChannel instance:
return new JChannel(ConfiguratorFactory.getStackConfigurator(<property value>));
String   udp.xml  

Back to the top