<< < 51 52 53 54 55 56 57 58 59 60 61 > >>   ∑:1482  Sort:Date

Instantiate PaperNet Chaincode (Smart Contract)
How to Instantiate the PaperNet Chaincode (Smart Contract), papercontract.js? Now that papercontract chaincode containing the CommercialPaper chaincode is installed on the required PaperNet peers, you, as administrator, can make it available to different network channels, so that it can be invoked b...
2019-12-02, 1021🔥, 0💬

Fabric CA Client Wallet
Where is the Fabric CA Client Wallet that stores identities and certificates used to access the Fabric CA Server? The Fabric CA Client Wallet is stored in the "msp" sub-directory in the $FABRIC_CA_CLIENT_HOME directory or the default location of $HOME/.fabric-ca-client. The Fabric CA Client Wallet h...
2019-09-27, 1021🔥, 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, 1020🔥, 0💬

Main Interfaces to Communicate with Ledger Peer
What are Main Interfaces to Communicate with a ledger peer on a hyperledger fabric network? There are 3 Main Interfaces to Communicate with a ledger peer on a hyperledger fabric network. 1. Peer CLI - The Peer CLI is a Command Line Interface (CLI) provided as part of the Hyperledger Fabric distribut...
2020-01-21, 1017🔥, 0💬

Switch Default Peer on BYFN CLI Container
How to switch the default peer on BYFN CLI Container? I want to join peer0.org2.example.com to the channel. You can follow this tutorial to switch the default peer to peer0.org2.example.com and join it to BYFN "mychannel" channel. 1. Switch the default peer by changing environment variables: bash-4....
2020-09-30, 1016🔥, 0💬

"docker container start --attach" - Attach Console
How to start a container with its console attached to the host console using the "docker container start --attach" command? By default, the "docker command start" command will start a container and run its default command in the background. You will not see anything that is printed its console. If y...
2019-04-30, 1015🔥, 0💬

Change Data with "mysql.connector"
How to make data changes to MySQL database with "mysql.connector" module? Making data changes to MySQL database with "mysql.connector" requires to run INSERT, UPDATE or DELETE SQL statements with an established connection. By default, changes are not committed until you call the con.commit() method ...
2021-09-09, 1013🔥, 0💬

"docker container exec" - Execute Command on Running Container
How to Execute an extra Command on a Running Container using the "docker container exec" command? Since Linux system is a multi-tasking system, you can send an extra command to be executed on a running Alpine container. 1. Check the container status to make it is still running. fyicenter$ docker con...
2019-02-17, 1013🔥, 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, 1010🔥, 0💬

HTML resources?
Hi there, I know you're busy, so I'll keep it short and sweet :) I've just built a nice little tool called 'HTML5 Periodic Table'. It's incredibly useful for any developer using HTML and the great thing is that anyone in your audience can use it anytime they want for absolutely zero cost! Naturally,...
2020-08-25, 1009🔥, 0💬

Member Peers of a Channel
How to find out which Peers are members of the "mychannel" channel? One way to find out which Peers are members of the "mychannel" channel is to visit each peers and check their joined channel list: 1. Connect to the CLI container: $ docker exec -it cli bash bash-4.4# 2. Check joined channel list on...
2020-05-29, 1005🔥, 0💬

issue.js - Application to Issue New Paper
What is the Application to Issue New Pape, issue.js? issue.js is a client application using the Hyperledger Fabric Node.js SDK library to invoke the issue() function of the papercontract running on the PaperNet. 1. View issue.js source code: (isabella)$ cd ~/hyperledger-binaries/fabric- samples(isab...
2019-11-21, 1003🔥, 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, 1003🔥, 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, 1002🔥, 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, 1000🔥, 0💬

Hyperledger Fabric Network
Where to find tutorials on Hyperledger Fabric Network? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Fabric Network. Simplest Hyperledger Fabric Network Two-Organization Hyperledger Fabric Network Multiple Ledger Peers within Orga...
2020-02-07, 1000🔥, 0💬

What Is Hyperledger Composer Playground
What Is Hyperledger Composer Playground? Hyperledger Composer Playground is a Web browser based tool that allows you to build and test your hyperledger application quickly. Hyperledger Composer Playground is part of the Hyperledger Composer tool set, which is designed to help you to build and test a...
2021-12-28, 999🔥, 0💬

"configtxgen" Command - Build *MSPanchors.tx
How to run "configtxgen" command to build a transaction message to define the anchor peer in each organization in BYFN (Build Your First Network)? You can follow this tutorial to run "configtxgen" command to build a transaction message to define the anchor peer in each organization in BYFN. The "con...
2020-10-20, 999🔥, 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, 999🔥, 0💬

"composer network" Commands
What can I do with "composer network" command? "composer network" commands are part of the Composer CLI command set. It allows you to manage business networks running in the Hyperledger Composer developer environment. Here is the syntax of the "composer network" commands: $ composer network help Com...
2020-12-26, 998🔥, 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, 997🔥, 0💬

Install Node.js Application Dependencies
What is Install Node.js Application Dependencies? Since the applications are written with Hyperledger Fabric Node.js SDK Isabella needs to install some dependencies, which are listed in the package.json file. (isabella)$ cd ~/hyperledger-binaries/fabric- samples(isabella)$ cd commercial-paper/organi...
2019-12-02, 997🔥, 0💬

"openjdk" Docker Image for Windows
What is the "openjdk" Docker Image for Windows? "openjdk" Docker Image for Windows provides a Docker container of as a Java development environment. 1. Create a container from the "openjdk" image. C:\fyicenter&gt; docker container create --name java --tty --interactive openjdk 2. Start the conta...
2022-01-24, 996🔥, 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, 994🔥, 0💬

<< < 51 52 53 54 55 56 57 58 59 60 61 > >>   ∑:1482  Sort:Date