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

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

Deploy Orderer with Default Configuration
How to Deploy the Orderer Docker Image with the Default Configuration? You can follow this tutorial to deploy the Orderer Docker Image with the Default Configuration. 1. Create a new Docker Compose YAML file, docker-compose-default.yaml: $ cd fabric-orderer $ cp docker-compose-orderer.yaml docker-co...
2019-05-14, 1178🔥, 0💬

Steps of Setting Up Ledger Peer
What are major steps to Set Up an Ledger Peer on a Hyperledger Fabric network? Here are major steps to Set Up an Ledger Peer (also called Peer Node) on a Hyperledger Fabric network. Pulling the Hyperledger Fabric peer images from docker hub. Creating the organization your peer node belongs to. Confi...
2019-05-14, 1024🔥, 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, 1022🔥, 0💬

Turn on Orderer Peer Operation RESTful API
How to Turn on Orderer Peer Operation RESTful API? You can follow this tutorial to Turn on Orderer Peer Operation RESTful API. 1. Update Docker Compose YAML file, docker-compose-default.yaml to override the "operations" settings: $ cd fabric-orderer $ vi docker-compose-default.yaml # Copyright (c) F...
2019-05-14, 1008🔥, 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, 925🔥, 0💬

Deploy Peer with Default Configuration
How to Deploy the Peer Docker Image with the Default Configuration? You can follow this tutorial to deploy the Peer Docker Image with the Default Configuration. 1. Create a new Docker Compose YAML file, docker-compose-peer.yaml: $ cd fabric-peer $ vi docker-compose-peer.yaml # Copyright (c) FYIcente...
2019-05-10, 1214🔥, 0💬

Default core.yaml in Peer Docker Image
What is the Default core.yaml file in Peer Docker Image? The default core.yaml file in the Peer Docker Image is the default version of core.yaml, which provides settings to control the behavior of the Ledger peer. If you deploy the Peer Docker container without your own version of core.yaml, the def...
2019-05-10, 1097🔥, 0💬

Pull Hyperledger Fabric Peer Image
How to Pull Hyperledger Fabric Peer Image from docker hub? You can follow this tutorial to Pull Hyperledger Fabric Peer Image from docker hub. 1. Check the Docker local repository: $ docker image list | grep fabric-peer hyperledger/fabric-peer latest a1e3874f338b 3 weeks ago 178MB hyperledger/fabric...
2019-05-10, 1085🔥, 0💬

Differences of evaluateTransaction() and submitTransaction()
What are the differences of Differences of evaluateTransaction() and submitTransaction() of the fabric-network.Contract class? Here are the Differences of evaluateTransaction() and submitTransaction() of the fabric-network.Contract class: evaluateTransaction() method - Calls the given transaction fu...
2019-04-22, 5967🔥, 0💬

register-user.js - Register New User
How to write a Node.js script to Register New Users to ca.example.com? If you are an administrator on ca.example.com, you can register other new users to ca.example.com. Here is sample Node.js script, register-user.js, that uses your "admin" identity from the local wallet to register a new user to o...
2019-04-22, 1805🔥, 0💬

wallet-import.js - Import Keys to Wallet
How to write a Node.js script to Import Keys to Wallet? After enroll (sign in) to ca.example.com, you will receive your private key and a certificate of your public key. You can save import them into a local wallet. Here is sample Node.js script, wallet-import.js, that enrolls (signs in) to ca.examp...
2019-04-22, 1458🔥, 0💬

submit-transaction.js - Submit Chaincode Transaction
How to write a Node.js script to submit a transaction defined in the Invoke method of a chaincode? Here is sample Node.js script, submit-transaction.js, that uses a given user identity from the local wallet to submit a transaction on chaincode. /* Copyright (c) FYIcenter.com */ 'use strict'; const {...
2019-04-22, 1290🔥, 0💬

evaluate-transaction.js - Evaluate Chaincode Transaction
How to write a Node.js script to evaluate a transaction defined in the Invoke method of a chaincode? Here is sample Node.js script, evaluate-transaction.js, that uses a given user identity from the local wallet to evaluate a transaction on chaincode. /* Copyright (c) FYIcenter.com */ 'use strict'; c...
2019-04-22, 1107🔥, 0💬

Hyperledger Tutorials
Where to find tutorials on Hyperledger? I want to know how to create Hyperledger applications. Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about Hyperledger: Introduction to Hyperledger What Is Hyperledger What Is Blockchain What I...
2019-04-19, 1989🔥, 0💬

What Is Hyperledger
What Is Hyperledger? Hyperledger is an open source project for developing blockchain-based application frameworks and tools. Currently, Hyperledger is working on the following frameworks: Hyperledger Burrow v.0.21.0, 2019 - Hyperledger Burrow is a blockchain client including a built-to-specification...
2019-04-19, 1189🔥, 0💬

Introduction to Hyperledger
Where to find tutorials as Introduction to Hyperledger. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team as Introduction to Hyperledger. What Is Hyperledger What Is Blockchain What Is Distributed Ledger What Is Smart Contract   ⇒ What Is Hyperledge...
2019-04-19, 991🔥, 0💬

CouchDB Server Admin Web Portal
What is CouchDB Server Admin Web Portal? If you are running BYFN (Build Your First Network) with the CouchDB option, the World State of each peer node is stored a CouchDB server running as Docker container. The CouchDB server supports an admin web portal that allows you manage the CouchDB server, it...
2019-04-19, 1190🔥, 0💬

Impact of Stopping Chaincode Container
What is the impact of stopping a chaincode container of a peer? We know that if a Peer has chaincode installed, it will run it as chaincode container to help the channel to perform a transaction on the chaincode. If you stop a chaincode container of a peer who is not a required member of the chainco...
2019-04-17, 1000🔥, 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, 941🔥, 0💬

Instantiate Chaincode on BYFN Channel
How to Instantiate Chaincode on BYFN Channel? You can follow this tutorial to Instantiate Chaincode on BYFN Channel manually. 1. Verify the installed chaincode: $ docker exec -it cli bash bash-4.4# echo $CORE_PEER_ADDRESS peer0.org2.example.com:7051 bash-4.4# peer chaincode list --installed Get inst...
2019-04-14, 5505🔥, 0💬

Hyperledger Composer Playground
Where to find tutorials on Hyperledger Composer Playground. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Composer Playground. What Is Hyperledger Composer Playground Start Hyperledger Composer Playground What Is Basic Sample Busi...
2019-04-13, 1144🔥, 0💬

Update Anchor Peer of Each BYFN Organization
How to Update Anchor Peer of Each BYFN Organization? You can follow this tutorial to Update Anchor Peer of Each BYFN Organization. 1. Update the default peer as the anchor peer: bash-4.4# echo $CORE_PEER_ADDRESS peer0.org2.example.com:7051 bash-4.4# peer channel update -o orderer.example.com:7050 -c...
2019-04-13, 1623🔥, 0💬

Install Chaincode on BYFN Peers
How to install chaincode on BYFN peers? You can follow this tutorial to install chaincode on BYFN peers manually. 1. Verify the chaincode source file on the BYFN CLI container: $ docker exec -it cli bash bash-4.4# bash-4.4# echo $GOPATH /opt/gopath bash-4.4# ls -l $GOPATH/src/github.com/chainco de/ch...
2019-04-13, 1287🔥, 0💬

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