🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 释义 peer命令帮助管理员对Fabric区块链网络中的节点进行管理,根据管理任务的 不同,peer命令细分为5个子命令。 ## 语法 ```shell peer chaincode [option] [flags] peer channel [option] [flags] peer logging [option] [flags] peer node [option] [flags] peer version [option] [flags] ``` 每个子命令都有不同的选项(option),出于简化考虑,有时我们将命令、子命令 或子命令选项都称为命令。 如果运行某个子命令时没有指定选项,那么它将返回相关的帮助信息。 每个peer子命令都有一套自己的标志,其中许多标志被有意设计为全局标志, 以便可以在所有的子命令中使用该标志。我们将在相关的peer子命令中介绍这些标志。 peer命令的顶层标志如下: * help:使用--help标志获取任何peer命令的帮助信息,该标志非常有价值,你可以用它 获得命令、子命令乃至选项的帮助 例如: ```shell peer --help peer channel --help peer channel list --help ``` ## 示例 下面的命令使用--help标志查看`peer channel join`命令的帮助信息: ~~~ ~$ peer channel join --help ~~~ 你可以在终端看到如下的帮助文本: ~~~ Joins the peer to a channel. Usage: peer channel join [flags] Flags: -b, --blockpath string Path to file containing genesis block -h, --help help for join Global Flags: --cafile string Path to file containing PEM-encoded trusted certificate(s) for the ordering endpoint --certfile string Path to file containing PEM-encoded X509 public key to use for mutual TLS communication with the orderer endpoint --clientauth Use mutual TLS when communicating with the orderer endpoint --connTimeout duration Timeout for client to connect (default 3s) --keyfile string Path to file containing PEM-encoded private key to use for mutual TLS communication with the orderer endpoint -o, --orderer string Ordering service endpoint --ordererTLSHostnameOverride string The hostname override to use when validating the TLS connection to the orderer. --tls Use TLS when communicating with the orderer endpoint ~~~