<< < 5 6 7 8 9 10 11 12 > >>   Sort: Rank

Install Fabric CA Server and Client
How to install Fabric CA Server and Client binaries? You can follow this tutorial to install Fabric CA Server and Client binaries. 1. Install both the fabric-ca-server and fabric-ca-client binaries in $GOPATH/bin. $ go get -u github.com/hyperledger/fabric- ca/cmd/...$ cd $GOPATH $ ls -l ./bin -rwxrw...
2019-10-18, 1502🔥, 0💬

Fabric CA User’s Guide
Where is the Fabric CA User’s Guide? The Fabric CA User’s Guide is provided at: hyperledger-fabric-ca.readthed ocs.io/en/release-1.4/users-gu ide.html. The Fabric CA User’s Guide provides information on the following topics: Overview Getting Started Prerequisites Install Explore the Fabric CA CLI Co...
2019-10-18, 1425🔥, 0💬

Start Fabric CA Server Natively
How to Start Fabric CA Server Natively? You can follow this tutorial to Start Fabric CA Server Natively. 1. Shutdown existing Fabric CA Server or any process (or docker container) that is using port 7054. $ docker ps | grep fabric-ca hyperledger/fabric-ca:amd64-1. 4.0Up 9 days 0.0.0.0:7054-&gt;7...
2019-10-18, 1009🔥, 0💬

Fabric Network without CA Server
Can I run a Hyperledger Fabric Network without Fabric CA Server? Yes, you can run a Hyperledger Fabric Network without Fabric CA Server. In that case, you have to manage PKI certificate services manually For example, you need to do the following manually to add a new user to access your ledger peer:...
2019-10-18, 995🔥, 0💬

Requirements for Fabric CA Server and Client
What are the requirements to install and run Fabric CA Server and Client? Fabric CA Server and Client are written in Golang, so you need to stall Go environment and required libraries: Go 1.10+ installation GOPATH environment variable is set correctly libtool and libtdhl-dev packages are installed 1...
2019-10-18, 982🔥, 0💬

"fabric-ca-client enroll" Error - "Failed to insert"
Why am I getting the "Certificate signing failure: Failed to insert record into database: attempt to write a readonly database" error, when running the "fabric-ca-client enroll" command? If the Fabric CA Server is not able to update its database, you will get the "Certificate signing failure: Failed...
2019-09-27, 2371🔥, 0💬

"fabric-ca-client identity list" - List Identities
How to List Identities with the "fabric-ca-client identity list" command? If you want get a list of identities from the Fabric CA Server, you can run the "fabric-ca-client identity list" command: $ export FABRIC_CA_CLIENT_HOME=~/fabric -ca/native-client/admin$ ~/go/bin/fabric-ca-client identity list...
2019-09-27, 2188🔥, 0💬

Fabric CA Client Wallet
Where is the Fabric CA Client Wallet that stores identities and certificates used to access the Fabric CA Server? The Fabric CA Client Wallet is stored in the "msp" sub-directory in the $FABRIC_CA_CLIENT_HOME directory or the default location of $HOME/.fabric-ca-client. The Fabric CA Client Wallet h...
2019-09-27, 985🔥, 0💬

Enroll Fabric CA Client Admin Identity
How to Enroll Fabric CA Client Admin Identity? In order to use Fabric CA Client tool, you must enroll the server admin identity first. 1. Make sure Fabric CA Server is running at port 7054. 2. Set up FABRIC_CA_CLIENT_HOME environment variable to avoid using the default of $HOME/.fabric-ca-client $ m...
2019-09-27, 921🔥, 0💬

"fabric-ca-client certificate list" - List Certificates
How to List Certificates with the "fabric-ca-client certificate list" command? If you want get a list of certificates from the Fabric CA Server, you can run the "fabric-ca-client certificate list" command: $ export FABRIC_CA_CLIENT_HOME=~/fabric -ca/native-client/admin$ ~/go/bin/fabric-ca-client cer...
2019-09-27, 910🔥, 0💬

"fabric-ca-client register" - Register Second Admin
How to register a second admin with the "fabric-ca-client register" command? You can follow this tutorial to register a second admin with the "fabric-ca-client register" command. 1. Make sure the Fabric CA Server is running. 2. Go to the Fabric CA Client system where you have the "admin" wallet crea...
2019-09-16, 1156🔥, 0💬

Second Admin Enroll to Create Wallet
How can the second admin create his/her own certificate and save it in a wallet? You need to pass the identity name and password of "admin2" and "WSATRHlgxxnk" to the second admin to create his/her own certificate and save it in a wallet. 1. Pass identity "admin2" and "WSATRHlgxxnk" to Amy. 2. Amy i...
2019-09-16, 1099🔥, 0💬

Register Identity of "user" Type
How to register a new identity of "user" type? You can follow this tutorial to register a new identity of "user" type. 1. Go to the Fabric CA Client system where you have the "admin" wallet created in the previous tutorial. $ cd ~/fabric-ca/native-client/admi n$ export FABRIC_CA_CLIENT_HOME=~/fabric ...
2019-09-16, 1091🔥, 0💬

Add Identity using JSON String
How to add a new identity using a JSON string? You can follow this tutorial to add a new identity using a JSON string. 1. Go to the Fabric CA Client system where you have the "admin" wallet created in the previous tutorial. $ cd ~/fabric-ca/native-client/admi n$ export FABRIC_CA_CLIENT_HOME=~/fabric ...
2019-09-16, 1064🔥, 0💬

Requirements for Registering New Identities
What are requirements for Registering New Identities? With the Fabric CA Client tool, you can register new identities on the Fabric CA Server, if you meet the following requirements: 1. You, as the registrar, must have an identity in your wallet that has the "hf.Registrar.Roles" attribute with a val...
2019-09-16, 1032🔥, 0💬

Setting Up Orderer Peer Manually
Where to find tutorials on Setting Up an Orderer Peer Manually? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Setting Up an Orderer Peer Manually. Steps of Setting Up Orderer Peer Pull Hyperledger Fabric Orderer Image Create Orderer Organizat...
2019-09-04, 1101🔥, 0💬

orderer.yaml - Orderer Peer Configuration File
What is the Orderer Peer Configuration File, orderer.yaml? The Orderer Peer Configuration File, orderer.yaml, provides settings to control the behavior of the Orderer peer. You can take a copy of the orderer.yaml provided in Fabric binary and sample package: $ cd fabric-orderer $ cp ~/hyperledger-bi...
2019-09-04, 1089🔥, 0💬

Steps of Setting Up Orderer Peer
What are major steps to Set Up an Orderer Peer on a Hyperledger Fabric network? Here are major steps to Set Up an Orderer Peer (also called Orderer Node) on a Hyperledger Fabric network. Pulling the Hyperledger Fabric orderer images from docker hub. Creating the organization your ordering node belon...
2019-09-04, 1056🔥, 0💬

Create Orderer Organization Definition
How to Create Orderer Organization Definition? You can follow this tutorial to Create Orderer Organization Definition. 1. Instead of creating a new MSP entry for the orderer, you can borrow the one created in BYFN tutorials: $ mkdir fabric-orderer $ cd fabric-orderer $ cp -r ~/hyperledger-binaries/f...
2019-09-04, 1019🔥, 0💬

Pull Hyperledger Fabric Orderer Image
How to Pull Hyperledger Fabric Orderer Image from docker hub? You can follow this tutorial to Pull Hyperledger Fabric Orderer Image from docker hub. 1. Check the Docker local repository: $ docker image list | grep fabric-orderer hyperledger/fabric-orderer latest ec4ca236d3d4 2 weeks ago 173MB hyperl...
2019-09-04, 1014🔥, 0💬

"could not load a valid signer certificate" Error
How to troubleshoot the Orderer peer? The Docker container terminated by itself. You can follow this tutorial to troubleshoot the Orderer peer. 1. Check the log file of the Orderer peer: $ docker logs --tail 10 orderer.example.com [localconfig] completeInitialization -&gt; INFO 001 Kafka.Version...
2019-08-23, 3303🔥, 0💬

Generate Genesis Block for Orderer
How to generate the Generate Genesis Block for the Orderer peer? When running a Hyperledger Fabric network, orderer peers also maintains a special blockchain called the orderer system channel (or ordering system channel). If you are starting a new orderer peer, you need to generate the genesis block...
2019-08-23, 1172🔥, 0💬

Default orderer.yaml in Orderer Docker Image
What is the Default orderer.yaml file in Orderer Docker Image? The default orderer.yaml file in the Orderer Docker Image is the default version of orderer.yaml, which provides settings to control the behavior of the Orderer peer. If you deploy the Orderer Docker container without your own version of...
2019-08-23, 1142🔥, 0💬

docker-compose-orderer.yaml - Docker Configuration
What is the Docker Compose configuration file for an Orderer peer? The Docker Compose configuration file, docker-compose-orderer.yaml, provides settings on how to run the orderer peer on the Docker engine. Here is a sample of docker-compose-orderer.yaml for a single orderer peer: $ cd fabric-orderer...
2019-08-23, 1000🔥, 0💬

<< < 5 6 7 8 9 10 11 12 > >>   Sort: Rank