<< < 48 49 50 51 52 53 54 55 56 57 58 > >>   ∑:1482  Sort:Date

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, 1092🔥, 0💬

BYFN Containers Running on Docker
What BYFN (Build Your First Network) containers are running on Docker Engine? Once your BYFN is deployed and executed on the Docker Engine, there will be 9 containers running on the Docker Engine: $ cd hyperledger-binaries/fabric-sa mples/first-network$ ./byfn.sh up ... $ docker ps IMAGE COMMAND NAM...
2020-11-11, 1090🔥, 0💬

"peer chaincode invoke" on BYFN
How to run "peer chaincode invoke" to invoke the transaction on the chaincode instance? After a chaincode in properly installed on all peers and instantiated on the channel, you can run the "peer chaincode invoke" to invoke the transaction on the chaincode instance. 1. Verify instantiated chaincode:...
2020-08-13, 1088🔥, 0💬

Organization with CLI Admin Tool
Should I run CLI Admin Tool in my organization on a multi-organization network? Yes, you should run CLI Admin Tool in your organization on a multi-organization network. It provides a nice tool for your administrator to manage ledger peers in your organization. Now we have a Hyperledger Fabric Networ...
2019-10-27, 1088🔥, 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, 1087🔥, 0💬

Remove Log Files of Docker Container
How to remove log files of a Docker container? If you keep a Docker container running for many days, it will generate many log files on your hosting system. You can follow this tutorial to remove old log files of a Docker container. 1. Get the container ID of "peer0.org1.example.com" container: $ do...
2020-05-29, 1086🔥, 0💬

"docker image rm" - Remove Image
How to remove an image from the local repository with "docker image rm" command? If an image is no longer needed, you can remove it from the local repository to save space using the "docker image rm" command. 1. Run "docker image list" command. You see the image, hello-world. fyicenter$ docker image...
2019-03-21, 1086🔥, 0💬

What Is "docker build" Command
What is "docker build" Command? "docker build" Command allows you build new Docker image with instructions given in a given Dockerfile. Here is the syntax of the "docker build" command: fyicenter$ docker build --help Usage: docker build [OPTIONS] PATH | URL | - Build an image from a Dockerfile Optio...
2019-01-27, 1085🔥, 0💬

HTML 'blockquote' Tag/Element
What Is an XHTML "blockquote" Tag/Element? A blockquote element is a block level element that can be used directly as a sub-element in the body element. You can use blockquote elements to specify a block of paragraphs to be displayed in a quotation format. Here are basic rules about blockquote eleme...
2023-08-03, 1084🔥, 0💬

Hyperledger Composer Runtime
What Is the Hyperledger Composer Runtime? The primary component of the Hyperledger Composer is the Composer Runtime as shown in the following architecture diagram: |----------------------------- || Business | Business | ... | | Network 1 | Network 2 | ... | |----------- API -------------| |---------...
2021-12-28, 1084🔥, 0💬

"docker container logs" - Fetch Logs
How to fetch log messages from a container with the "docker container logs" command? Most Docker container applications print log messages to its console to report statuses and debug information. You can fetch log messages from a container with the "docker container logs" command at any time, even a...
2019-04-29, 1084🔥, 0💬

Remove Older Versions Chaincode Containers
How to Remove Older Versions Chaincode Containers after the chaincode instance is upgraded? After a chaincode instance is upgraded, chaincode containers of the old version are still running on the Docker Engine. You can follow this tutorial to remove them. 1. List all chaincode containers: $ docker ...
2020-08-13, 1083🔥, 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, 1082🔥, 0💬

Download and Install Java SDK
How to download and install Java SDK for Hyperledger Fabric? You can follow this tutorial to download and install Java SDK for Hyperledger Fabric. 1. Install JDK 11: $ sudo add-apt-repository ppa:linuxuprising/java $ sudo apt-get update $ sudo apt-get install oracle-java11-installer $ java -version ...
2020-01-21, 1080🔥, 0💬

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

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, 1071🔥, 0💬

"composer network" - Deploy BNA File
How to deploy and start a business network BNA file to the local Hyperledger Fabric developer environment? You can use the "composer network" command to deploy and start a business network BNA file on the local Hyperledger Fabric developer environment: $ cd tutorial-network $ composer network instal...
2021-02-04, 1070🔥, 0💬

"python" - Python Docker Image
What is the Python Docker Image, "python"? I wan to use it build a Python application. The Python Docker Image, "python", is the official Docker image that provides you a Python development environment. You pull and try it. 1. Search for the "python" image. fyicenter$ docker search python NAME DESCR...
2019-02-04, 1070🔥, 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, 1069🔥, 0💬

"docker start/stop" - Start and Stop Docker Containers
How to run "docker start/stop" - Start and Stop Docker Containers for BYFN (Build Your First Network)? If you have your BYFN Docker containers deployed to the Docker Engine, you can use the "docker start/stop" command to manage them. 1. Look at the status of all deployed Docker containers: $ docker ...
2020-10-10, 1067🔥, 0💬

Contents of Hyperledger Fabric Binary Package
What contents are included in the Hyperledger Fabric Binary Package? Here is the directory list of the Hyperledger Fabric Binary Package: $ cd ~/hyperledger-binaries/fabric- samples$ ls -l -rw-rw-r-- 1 fyicenter 597 Apr 1 23:01 CODE_OF_CONDUCT.md -rw-rw-r-- 1 fyicenter 961 Apr 1 23:01 CONTRIBUTING.m...
2020-01-21, 1066🔥, 0💬

Orderer Peer Operation RESTful API
What is Orderer Peer Operation RESTful API? The Orderer Peer Operation RESTful API is RESTful Web service provided by an orderer peer. It is different than and separated from the primary orderer Web service provided by the orderer peer. orderer Peer Operation RESTful API exposes the following functi...
2019-05-14, 1066🔥, 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, 1065🔥, 0💬

What Is Hyperledger Fabric Query
What Is Hyperledger Fabric Query? A Hyperledger Fabric Query is a GET operation provided by a chaincode on a channel on a Hyperledger Fabric network to return the current state of a given asset. In order to perform a query operation, you need to prepare the following: Asset ID - Identifies the Asset...
2020-01-29, 1063🔥, 0💬

<< < 48 49 50 51 52 53 54 55 56 57 58 > >>   ∑:1482  Sort:Date