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

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, 870👍, 0💬

What Is Ledger Peer Operation RESTful API
What is Ledger Peer Operation RESTful API? Ledger Peer Operation RESTful API is RESTful Web service provided by a ledger peer. It is different than and separated from the primary ledger Web service provided by the ledger peer. Ledger Peer Operation RESTful API exposes the following functionalities: ...
2019-04-11, 870👍, 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, 868👍, 0💬

Verify Docker Engine on Ubuntu
How to verify Docker Engine on Ubuntu? Hyperledger Fabric framework runs on Docker Engine. So it is important to verify that Docker Engine is running correctly on your local Ubuntu system. Here are some suggestions on how to verify the Docker Engine. 1. Verify version of the Docker Engine and make s...
2020-05-15, 867👍, 0💬

Build and Run "Hello" Go Program
How to Build and Run "Hello" Go Program on Ubuntu? Hyperledger Fabric framework is written in Go language. So it is important to learn how build and run Go programs on Ubuntu. Here are the steps to build and run the "Hello" Go program. 1. Make sure that Go is installed. $ go version go version go1.1...
2020-05-15, 865👍, 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, 865👍, 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, 864👍, 0💬

Deploy Business Network Archive (BNA) to Playground
How to deploy a Business Network Archive (BNA) file to Hyperledger Composer Playground? If you have an existing Business Network Archive (BNA) file that contains a Hyperledger Composer Business Network application, you can follow this tutorial to deploy it to the Hyperledger Composer Playground. 1. ...
2020-12-15, 864👍, 0💬

Inspect Docker Container Configuration
How to Inspect the Configuration of a Docker Container? You can use the "docker inspect" command to view the Configuration of a given Docker Container. For example, Let's look at the configuration of the peer0.org1 container of the BYFN network. $ docker inspect peer0.org1.example.com [ { "Id": "b81...
2020-05-29, 864👍, 0💬

Setting Up Ledger Peer Manually
Where to find tutorials on Setting Up Ledger Peer Manually? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Setting Up Ledger Peer Manually. Steps of Setting Up Ledger Peer Pull Hyperledger Fabric Peer Image Deploy Peer with Default Configurati...
2019-05-14, 863👍, 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, 861👍, 0💬

What Is Basic Sample Business Network
What is Basic Sample Business Network? Basic Sample Business Network is the "Hello World" of Hyperledger Composer samples, which demonstrates the core functionality of Hyperledger Composer by changing the value of an asset. Basic Sample Business Network supports the following business object types: ...
2020-12-22, 860👍, 0💬

Prepare User Identity for Isabella
How to Prepare User Identity for Isabella? If Isabella wants to run any application to use the chaincode running the PaperNet, you to prepare a user identity for her. An identity of an application user consists of a private key and a public key certificate issue by the CA node of the PaperNet. Norma...
2019-11-21, 860👍, 0💬

redeem.js - Application to Redeem Paper
What is the Application to Redeem Pape, redeem.js? redeem.js is a client application using the Hyperledger Fabric Node.js SDK library to invoke the redeem() function of the papercontract running on the PaperNet. 1. View redeem.js source code: (balaji)$ cd ~/hyperledger-binaries/fabric- samples(balaj...
2019-11-08, 860👍, 0💬

Not All Member Peers Run Chaincode
How to find out which member peers are running a given chaincode? When a chaincode is instantiated on a channel, you don't need all member peers to install the chaincode and run it. But we have to have some member peers to install and run it. Otherwise, no transactions can be performed on this chain...
2019-04-17, 860👍, 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, 858👍, 0💬

Basic Sample Business Network - SampleAsset
How to add new SampleAsset records in Basic Sample Business Network? You can follow this tutorial to add new SampleAsset records in Basic Sample Business Network. 1. Open Hyperledger Composer Playground and go to Basic Sample Business Network home page, as shown in the previous tutorial. 2. Click "T...
2020-12-22, 857👍, 0💬

BYFN CLI "peer" Command Prefix
How to use BYFN CLI "peer" Command Prefix? By default, when you run the "peer" command on the BYFN CLI container, it will be executed again the default peer node specified by 4 environment variables: CORE_PEER_MSPCONFIGPATH=/opt/g opath/.../org1.example.com/use rs/Admin@org1.example.com/mspCORE_PEER_...
2020-09-15, 853👍, 0💬

Peer and CouchDB Container Dependency
Which Peer container depends which CouchDB container in BYFN network? If you are running BYFN (Build Your First Network) with the CouchDB option, the Peer and CouchDB Container Dependency is defined in the "docker-compose-couch.yaml" file. $ cd ~/hyperledger-binaries/fabric- samples/first-network$ m...
2020-07-03, 853👍, 1💬

"docker-compose" - Deploy Orderer to Docker
How to deploy Orderer peer to Docker using the "docker-compose" command? You can follow this tutorial to deploy Orderer peer to Docker using the "docker-compose" command. 1. Verify required files for the Orderer peer: $ cd fabric-orderer $ ls -l -rw-rw-r-- 1 fyicenter 935 Apr 1 02:23 docker-compose-...
2019-08-23, 853👍, 0💬

Turn on Ledger Peer Operation RESTful API
How to Turn on Ledger Peer Operation RESTful API? You can follow this tutorial to Turn on Ledger Peer Operation RESTful API. 1. Update Docker Compose YAML file, docker-compose-peer.yaml to override the "operations" settings: $ cd fabric-peer $ vi docker-compose-peer.yaml # Copyright (c) FYIcenter.co...
2019-02-09, 849👍, 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, 848👍, 0💬

Basic Sample Business Network - Home Page
What is on the Basic Sample Business Network home page? You can follow this tutorial to see what's on the Basic Sample Business Network home page. 1. Run Web browser and go to: composer-playground.mybluemix. net. 2. Click on "Let's Blockchain!" to skip the welcome page. 3. Click "Get Started -&g...
2020-12-22, 847👍, 0💬

Build the BYFN Network Manually
How to build the BYFN (Build Your First Network) manually? You build the BYFN network automatically with the "./byfn.sh up" script command. But if you want to learn how to build it manually, you need to complete the following steps: 1. Review and revise crypto-config.yaml configuration file, which c...
2020-10-26, 844👍, 0💬

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