Skip to content

Commit

Permalink
[FAB-8240] Document Orderer.Addresses config setting
Browse files Browse the repository at this point in the history
This changeset documents the `Orderer.Addresses` configuration parameter in
`configtx.yaml` and readthedocs.

Change-Id: Idbf35a2a3ba32f9db6ea6f33a1b214544c008ecd
Signed-off-by: luomin <luomin_tokyotech@hotmail.com>
Signed-off-by: Kostas Christids <kostas@christidis.io>
  • Loading branch information
luomin authored and denyeart committed Mar 6, 2018
1 parent 7a5a16e commit 8793c73
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
11 changes: 11 additions & 0 deletions docs/source/ordering-service-faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,17 @@ Solo
Kafka
~~~~~

:Question:
**How do I remove a node from the ordering service?**

:Answer:
This is a two step-process:

1. Add the node's certificate to the relevant orderer's MSP CRL to prevent peers/clients from connecting to it.
2. Prevent the node from connecting to the Kafka cluster by leveraging standard Kafka access control measures such as TLS CRLs, or firewalling.

..
:Question:
**I have never deployed a Kafka/ZK cluster before, and I want to use the
Kafka-based ordering service. How do I proceed?**
Expand Down
6 changes: 5 additions & 1 deletion sampleconfig/configtx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,11 @@ Orderer: &OrdererDefaults
# Orderer Type: The orderer implementation to start.
# Available types are "solo" and "kafka".
OrdererType: solo


# Addresses here is a nonexhaustive list of orderers the peers and clients can
# connect to. Adding/removing nodes from this list has no impact on their
# participation in ordering.
# NOTE: In the solo case, this should be a one-item list.
Addresses:
- 127.0.0.1:7050

Expand Down

0 comments on commit 8793c73

Please sign in to comment.