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

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, 1189🔥, 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, 1052🔥, 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, 848🔥, 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, 1305🔥, 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, 1075🔥, 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, 999🔥, 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, 890🔥, 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, 847🔥, 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, 1041🔥, 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, 1005🔥, 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, 921🔥, 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, 877🔥, 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, 865🔥, 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, 1066🔥, 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, 1043🔥, 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, 953🔥, 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, 871🔥, 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, 1462🔥, 0💬

Launch the WYFA Network
How to Launch the Hyperledger Fabric Network to run the WYFA (Writing Your First Application) tutorial? You can follow these steps to Launch the Hyperledger Fabric Network to run the WYFA (Writing Your First Application) tutorial. 1. Run the startFabric.sh script to spin up a blockchain network, cre...
2020-02-29, 1110🔥, 0💬

Verify the WYFA Network
How to Verify the Hyperledger Fabric Network to run the WYFA (Writing Your First Application) tutorial? You can follow these steps to verify the Hyperledger Fabric Network to run the WYFA (Writing Your First Application) tutorial. 1. Connect to the CLI container: $ docker exec -it cli bash bash-4.4#...
2020-02-29, 982🔥, 0💬

Reinstall Chaincode on WYFA Network
How to Reinstall Chaincode on the WYFA (Writing Your First Application) network? You can follow these steps to Reinstall Chaincode on the WYFA (Writing Your First Application) network. 1. Try to install "fabcar" chaincode again. You may see an error, if the chaincode is already installed. $ docker e...
2020-02-29, 942🔥, 0💬

Clean Up Docker Engine for WYFA
How to Clean Up Docker Engine to run the WYFA (Writing Your First Application) tutorial? You can follow these steps to setup the Clean Up Docker Engine to run the WYFA (Writing Your First Application) tutorial. 1. Stop existing Hyperledger Fabric Networks on your local host by stopping all Docker co...
2020-02-29, 919🔥, 0💬

Read Block Data in Blockchain
How to Read Block Data from a Blockchain? The block data from a blockchain uses a binary format. You need to use the "configtxgen -inspectBlock" command parse it to JSON format. 1. Get the newest block from the blockchain: $ docker exec -it cli bash root@262918fdcbc0:/opt/gopath/ src/github.com/hyper...
2020-02-20, 1718🔥, 0💬

Interact with "fabcar" Chaincode on CLI
How to Interact "fabcar" Chaincode on CLI? After you started the WYFA network properly, you will have the "fabcar" chaincode running on "mychannel" on the peer0.org1.example.com peer container. You can now interact with the "fabcar" chaincode from the CLI container as shown below. 1. Connect to CLI ...
2020-02-20, 1661🔥, 0💬

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