You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by km...@apache.org on 2017/10/06 21:30:28 UTC

[geode] branch develop updated: GEODE-3612 Document new gfsh option (#871)

This is an automated email from the ASF dual-hosted git repository.

kmiller pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new b7c74b3  GEODE-3612 Document new gfsh option (#871)
b7c74b3 is described below

commit b7c74b3d601885cc5c9b45a938cd8674d12ece0d
Author: Karen Miller <ka...@users.noreply.github.com>
AuthorDate: Fri Oct 6 14:30:26 2017 -0700

    GEODE-3612 Document new gfsh option (#871)
    
    * GEODE-3612 Document new gfsh option
    
    The gfsh create gateway-receiver command now accepts a
    hostname-for-senders option.
    
    * GEODE-3612 Revise --hostname-for-senders docs per review
---
 geode-docs/tools_modules/gfsh/command-pages/create.html.md.erb     | 7 ++++++-
 .../setting_up_a_multisite_system.html.md.erb                      | 6 ++++--
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/geode-docs/tools_modules/gfsh/command-pages/create.html.md.erb b/geode-docs/tools_modules/gfsh/command-pages/create.html.md.erb
index 25ce6a0..2fd6841 100644
--- a/geode-docs/tools_modules/gfsh/command-pages/create.html.md.erb
+++ b/geode-docs/tools_modules/gfsh/command-pages/create.html.md.erb
@@ -362,7 +362,7 @@ See [Gateway Receivers](../../../topologies_and_comm/topology_concepts/multisite
 create gateway-receiver [--groups=value(,value)*] [--members=value(,value)*] 
   [--manual-start=value] [--start-port=value] [--end-port=value] [--bind-address=value] 
   [--maximum-time-between-pings=value] [--socket-buffer-size=value]
-  [--gateway-transport-filter=value(,value)*]
+  [--gateway-transport-filter=value(,value)*] [--hostname-for-senders=value]
 ```
 
 **Parameters, create gateway-receiver:**
@@ -428,6 +428,11 @@ create gateway-receiver [--groups=value(,value)*] [--members=value(,value)*]
 <td>Integer value that specifies the time interval (in milliseconds) to use between pings to connected WAN sites. This value determines the maximum amount of time that can elapse before a remote WAN site is considered offline.</td>
 <td>60000</td>
 </tr>
+<tr class="even">
+<td><span class="keyword parmname">\-\-hostname-for-senders</span></td>
+<td>The host name or IP address told to gateway senders as the address for them to connect to. The locator informs gateway senders of this value.</td>
+<td> </td>
+</tr>
 </tbody>
 </table>
 
diff --git a/geode-docs/topologies_and_comm/multi_site_configuration/setting_up_a_multisite_system.html.md.erb b/geode-docs/topologies_and_comm/multi_site_configuration/setting_up_a_multisite_system.html.md.erb
index 8e03069..1890733 100644
--- a/geode-docs/topologies_and_comm/multi_site_configuration/setting_up_a_multisite_system.html.md.erb
+++ b/geode-docs/topologies_and_comm/multi_site_configuration/setting_up_a_multisite_system.html.md.erb
@@ -247,7 +247,8 @@ To configure a gateway receiver, you can use gfsh, cache.xml or Java API configu
 -   **gfsh configuration command**
 
     ``` pre
-    gfsh>create gateway-receiver --start-port=1530 --end-port=1551 
+    gfsh>create gateway-receiver --start-port=1530 --end-port=1551 \
+        --hostname-for-senders=gateway1.mycompany.com
     ```
 
 -   **cache.xml Configuration**
@@ -256,7 +257,8 @@ To configure a gateway receiver, you can use gfsh, cache.xml or Java API configu
 
     ``` pre
     <cache>
-      <gateway-receiver start-port="1530" end-port="1551" hostname-for-senders="gateway1.mycompany.com" /> 
+      <gateway-receiver start-port="1530" end-port="1551"
+                        hostname-for-senders="gateway1.mycompany.com" /> 
        ... 
     </cache>
     ```

-- 
To stop receiving notification emails like this one, please contact
['"commits@geode.apache.org" <co...@geode.apache.org>'].