<< < 19 20 21 22 23 24 25 26 27 28 29 > >>   Sort: Rank

"byfn.sh up" Error - Container Name in Use
Why am I getting the "Cannot create container for service peer0.org1.example.com: b'Conflict." error when running "byfn.sh up" to start up the BYFN Network? You are getting "Cannot create container for service peer0.org1.example.com: b'Conflict." error when running the "byfn.sh up" command, because ...
2020-05-05, 1148🔥, 0💬

"first-network" - Building Your First Network
What is BYFN (Build Your First Network)? BYFN (Build Your First Network) is a tutorial provided in the Hyperledger Fabric "Samples, Binaries and Docker Images" package provided at http://bit.ly/2ysbOFE . After installing the binary package, the BYFN tutorial is located at ~/hyperledger-binaries/fabr...
2020-05-05, 1033🔥, 0💬

"byfn.sh generate" - Generate BYFN Configuration
How to run "byfn.sh generate" to Generate BYFN Network Configuration? You can follow this tutorial to run "byfn.sh generate" to Generate BYFN Network Configuration with default values. The "./byfn.sh generate" command automatically calls: "../bin/cryptogen" to generate certificates, and "../bin/conf...
2020-05-05, 999🔥, 0💬

"byfn.sh up" - Start Up BYFN Network
How to run "byfn.sh up" to start up the BYFN Network? You can follow this tutorial to run "byfn.sh up" to Start up the BYFN Network. The "./byfn.sh up" command automatically generates the configuration again, deploys/starts all containers to the Docker Engine, and runs a set of chaincode tests. $ cd...
2020-05-05, 957🔥, 0💬

What Is basic-network Sample Network
What is basic-network Sample Network? basic-network is a Hyperledger Fabric network example included in the "Samples, Binaries and Docker Images" package. The basic-network Sample Network provides scripts and configuration files to create a simple Hyperledger Fabric network with a single organizatio...
2020-04-25, 1646🔥, 0💬

basic-network Sample Network
Where to find tutorials on Hyperledger Fabric basic-network Sample Network? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Fabric basic-network Sample Network. What Is basic-network Sample Network start.sh - Start basic-network sto...
2020-04-25, 1536🔥, 0💬

teardown.sh - Teardown basic-network
How to run teardown.sh script to Teardown the Hyperledger Fabric example network, basic-network? You can follow this tutorial to run teardown.sh script to Teardown the Hyperledger Fabric example network, basic-network. 1. Run teardown.sh script to remove containers and their images related to the ba...
2020-04-25, 1201🔥, 0💬

start.sh - Start basic-network
How to run start.sh script to start the Hyperledger Fabric example network, basic-network? You can follow this tutorial to run start.sh script to start the Hyperledger Fabric example network, basic-network. 1. Stop existing Hyperledger Fabric Networks on your local host by stopping all Docker contai...
2020-04-25, 1063🔥, 0💬

stop.sh - Stop basic-network
How to run stop.sh script to stop the Hyperledger Fabric example network, basic-network? You can follow this tutorial to run stop.sh script to stop the Hyperledger Fabric example network, basic-network. 1. Run stop.sh script to stop the basic-network: $ cd ~/hyperledger-binaries/fabric- samples/basic...
2020-04-25, 859🔥, 0💬

"docker rmi" - Remove Docker Images
How to run Docker images with the "docker rmi" command? If some Hyperledger Fabric scripts failed to remove Docker images, you can remove them manually with the "docker rmi" command. 1. Identify the image with REPOSITORY and TAG with the "docker images" command: $ docker images REPOSITORY TAG CREATE...
2020-04-14, 1321🔥, 0💬

Connect to basic-network Peer
How to connect to the peer container of the basic-network? I want to see how is the peer doing. You can use the "docker exec" command to connect to the peer container of the basic-network. 1. Run "docker exec" to create an interactive connect with the peer container: $ docker exec -it peer0.org1.exa...
2020-04-14, 1086🔥, 0💬

View Logs Files of basic-network
How to view logs files of the example network, basic-network? The example network, basic-network, consists of 4 Docker containers. You can view the log file on each container. 1. View log file of the orderer container: $ docker logs orderer.example.com [orderer.common.server] prettyPrintStruct -&...
2020-04-14, 1013🔥, 0💬

Container Network - "net_basic"
What is the Container Network - "net_basic"? "net_basic" is a Docker container network consists of all containers related to Hyperledger Fabric network, basic-network. A container network groups containers together to help network communications among those containers. You can verify the "net_basic"...
2020-04-14, 909🔥, 0💬

Reinstall basic-network with Latest Images
How to Reinstall basic-network with Latest Images? You follow this tutorial to Reinstall basic-network with Latest Images. 1. Run teardown.sh script to remove containers and their images related to the basic-network: $ cd ~/hyperledger-binaries/fabric- samples/basic-network$ ./teardown.sh Removing p...
2020-04-14, 854🔥, 0💬

Check "couchdb" Database Server
How to Check the "couchdb" Database Server? The "couchdb" database server supports a REST API. We can use it to look at its data. 1. Find out the REST API port number of the "couchdb" server container: $ docker ps | grep couchdb hyperledger/fabric-couchdb 4369/tcp, 9100/tcp, 0.0.0.0:5984-&gt;598...
2020-03-25, 1053🔥, 0💬

Deploy orderer.example.com Manually
How to Deploy orderer.example.com as a Docker container manually? You can follow this tutorial to Deploy orderer.example.com as a Docker container manually. 1. Verify the configuration of the orderer.example.com container defined in the docker-compose.yml file: $ cd ~/hyperledger-binaries/fabric- sam...
2020-03-25, 1015🔥, 0💬

Deploy ca.example.com Manually
How to Deploy ca.example.com as a Docker container manually? You can follow this tutorial to Deploy ca.example.com as a Docker container manually. 1. Verify the configuration of the ca.example.com container defined in the docker-compose.yml file: $ cd ~/hyperledger-binaries/fabric- samples/basic-netw...
2020-03-25, 933🔥, 0💬

Download Blocks from Blockchain
How to download blocks from the blockchain on the peer? You can follow this tutorial to download blocks from the blockchain on the peer. 1. Connect to the peer container and setup membership variables: $ docker exec -it peer0.org1.example.com bash root@aedfd08717a5:/opt/gopath/ src/github.com/hyperle...
2020-03-25, 901🔥, 0💬

Deploy peer0.org1.example.com Manually
How to Deploy peer0.org1.example.com as a Docker container manually? You can follow this tutorial to Deploy peer0.org1.example.com as a Docker container manually. 1. Verify the configuration of the peer0.org1.example.com container defined in the docker-compose.yml file: $ cd ~/hyperledger-binaries/f...
2020-03-25, 881🔥, 0💬

Manage basic-network with cli Container
How to Manage basic-network with cli Container? You can follow this tutorial to Manage basic-network with cli Container. 1. Start all containers, including cli, defined in the docker-compose.yml file: $ cd ~/hyperledger-binaries/fabric- samples/basic-network$ docker-compose -f docker-compose.yml up ...
2020-03-15, 1074🔥, 0💬

WYFA (Writing Your First Application)
Where to find tutorials on WYFA (Writing Your First Application) Network? I need help to follow the document provided at hyperledger-fabric.readthedocs .ioWebsite. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on WYFA (Writing Your First Applica...
2020-03-15, 1056🔥, 0💬

Objectives of WYFA tutorials
What are the objectives of WYFA (Writing Your First Application) tutorials? Objectives of WYFA (Writing Your First Application) tutorials provided at hyperledger-fabric.readthedocs .ioWebsite are: 1. Setting up a development environment. Our application needs a network to interact with, so we’ll get...
2020-03-15, 973🔥, 0💬

Deploy cli Container Manually
How to Deploy cli as a Docker container manually? You can follow this tutorial to Deploy cli as a Docker container manually. 1. Verify the configuration of the cli container defined in the docker-compose.yml file: $ cd ~/hyperledger-binaries/fabric- samples/basic-network$ more docker-compose.yml ......
2020-03-15, 887🔥, 0💬

"fabric-nodeenv:latest not found" Error
How to resolve the "hyperledger/fabric-nodeenv:la testnot found" error? Based on discussions on the Internet, there is a something wrong in the Docker image repository for "hyperledger/fabric-nodeenv:la test"image. When you try to instantiate chaincode a Hyperledger Fabric network channel, a docker ...
2020-02-29, 1470🔥, 0💬

<< < 19 20 21 22 23 24 25 26 27 28 29 > >>   Sort: Rank