forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed quotation marks for CORE_PEER_LOCALMSPID
see hyperledger#4358 Signed-off-by: rlfnb <[email protected]>
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -211,7 +211,7 @@ Issue the following commands to operate as the Org1 admin. | |
export PATH=${PWD}/../bin:$PATH | ||
export FABRIC_CFG_PATH=${PWD}/../config/ | ||
export CORE_PEER_TLS_ENABLED=true | ||
export CORE_PEER_LOCALMSPID="Org1MSP" | ||
export CORE_PEER_LOCALMSPID=Org1MSP | ||
export CORE_PEER_TLS_ROOTCERT_FILE=${PWD}/organizations/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt | ||
export CORE_PEER_MSPCONFIGPATH=${PWD}/organizations/peerOrganizations/org1.example.com/users/[email protected]/msp | ||
export CORE_PEER_ADDRESS=localhost:7051 | ||
|
@@ -384,7 +384,7 @@ Export the Org2 environment variables: | |
# you can issue all of these commands at once | ||
export CORE_PEER_TLS_ENABLED=true | ||
export CORE_PEER_LOCALMSPID="Org2MSP" | ||
export CORE_PEER_LOCALMSPID=Org2MSP | ||
export CORE_PEER_TLS_ROOTCERT_FILE=${PWD}/organizations/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt | ||
export CORE_PEER_MSPCONFIGPATH=${PWD}/organizations/peerOrganizations/org2.example.com/users/[email protected]/msp | ||
export CORE_PEER_ADDRESS=localhost:9051 | ||
|
@@ -435,7 +435,7 @@ Export the following environment variables to operate as the Org3 Admin: | |
# you can issue all of these commands at once | ||
export CORE_PEER_TLS_ENABLED=true | ||
export CORE_PEER_LOCALMSPID="Org3MSP" | ||
export CORE_PEER_LOCALMSPID=Org3MSP | ||
export CORE_PEER_TLS_ROOTCERT_FILE=${PWD}/organizations/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/tls/ca.crt | ||
export CORE_PEER_MSPCONFIGPATH=${PWD}/organizations/peerOrganizations/org3.example.com/users/[email protected]/msp | ||
export CORE_PEER_ADDRESS=localhost:11051 | ||
|
@@ -570,7 +570,7 @@ admin: | |
export PATH=${PWD}/../bin:$PATH | ||
export FABRIC_CFG_PATH=$PWD/../config/ | ||
export CORE_PEER_TLS_ENABLED=true | ||
export CORE_PEER_LOCALMSPID="Org3MSP" | ||
export CORE_PEER_LOCALMSPID=Org3MSP | ||
export CORE_PEER_TLS_ROOTCERT_FILE=${PWD}/organizations/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/tls/ca.crt | ||
export CORE_PEER_MSPCONFIGPATH=${PWD}/organizations/peerOrganizations/org3.example.com/users/[email protected]/msp | ||
export CORE_PEER_ADDRESS=localhost:11051 | ||
|
@@ -789,7 +789,7 @@ commands to make sure that we are operating as the Org3 admin: | |
# you can issue all of these commands at once | ||
export CORE_PEER_LOCALMSPID="Org3MSP" | ||
export CORE_PEER_LOCALMSPID=Org3MSP | ||
export CORE_PEER_TLS_ROOTCERT_FILE=${PWD}/organizations/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/tls/ca.crt | ||
export CORE_PEER_MSPCONFIGPATH=${PWD}/organizations/peerOrganizations/org3.example.com/users/[email protected]/msp | ||
export CORE_PEER_ADDRESS=localhost:11051 | ||
|