<< < 15 16 17 18 19 20 21 22 23 24 25 > >>   Sort: Rank

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

Download Business Network from Playground
How to download Business Network from Hyperledger Composer Playground? You can follow this tutorial to download a Business Network from Hyperledger Composer Playground and save it to your local computer. 1. Open Hyperledger Composer Playground and go to Basic Sample Business Network home page, as sh...
2020-12-15, 888🔥, 0💬

Install Demo Business Networks in Playground
How to install other Business Network demo in Hyperledger Composer Playground? Hyperledger Composer offers many other demo Business Networks. You can follow this tutorial to install any of them in Hyperledger Composer Playground. 1. Open Hyperledger Composer Playground. You see a list of Business Ne...
2020-12-15, 866🔥, 0💬

Modify Business Network in Playground
How to modify Business Network in Hyperledger Composer Playground? You can follow this tutorial to modify a Business Network in Hyperledger Composer Playground and deploy it back to the Hyperledger Fabric simulator or server. 1. Open Hyperledger Composer Playground and go to Basic Sample Business Ne...
2020-12-15, 826🔥, 0💬

Basic Sample Business Network - SampleEvent
How to view SampleEvent emitted from Basic Sample Business Network? You can follow this tutorial to view SampleEvent emitted from Basic Sample Business Network. Since SampleEvent is generated by the SampleTransaction process, it is recorded as a child object to the SampleTransaction record. 1. Open ...
2020-12-15, 782🔥, 0💬

Hyperledger Composer Log File Location
Where are Hyperledger Composer Log Files located? Log files of the Hyperledger Composer developer environment is located in the "~/.composer/logs" directory. $ cd ~/.composer/logs $ ls -l -rw-rw-r-- 1 fyicenter 2257 Mar 31 19:49 trace_20190331.log -rw-rw-r-- 1 fyicenter 10482 Apr 1 13:05 trace_20190...
2020-12-02, 988🔥, 0💬

Peer Node Log File Location
Where are Peer Node Log Files located? Log files of the Hyperledger Composer peer node in the Docker container that runs the peer node. You can use these commands find peer node log files: 1. Find the container id of the peer node: $ docker ps | grep peer 6bc4e52f82d0 hyperledger/fabric-peer:x86_64 -...
2020-12-02, 967🔥, 0💬

Create Network Business Card in Playground
How to Create new Network Business Cards in Playground? You can follow this tutorial to Create new Network Business Cards in Playground. 1. Enter the following address in your browser. You see the Playground home page. http://localhost:8080 2. Click "Create Business Network Card". You the "Create A ...
2020-12-02, 892🔥, 0💬

Hyperledger Composer Log Files
Where to find tutorials on Hyperledger Composer Log Files. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Composer Log Files. Hyperledger Composer Log File Location Peer Node Log File Location Peer Log Messages - Start Environment ...
2020-12-02, 820🔥, 0💬

Peer Log Messages - Start Environment
How to verify peer node log messages to ensure my Hyperledger Composer developer environment is started correctly? You can follow this tutorial to verify peer node log messages generated during the Hyperledger Composer developer environment start up process. 1. Stop the environment: $ cd fabric-dev-...
2020-12-02, 807🔥, 0💬

Business Network Archive (BNA) File
What is Business Network Archive (BNA) file? A Business Network Archive (BNA) file is ZIP file that contains all source code files for a Hyperledger Composer application called Business Network. For example, if you downloaded the Basic Sample Business Network as a BNA file as shown in the previous t...
2020-11-22, 1347🔥, 0💬

Hyperledger Composer Script File
What Is Hyperledger Composer Script File (*.js)? A Hyperledger Composer script file is a source code file that define business logics on how each transaction is processed. A script file uses the JavaScript language and the .js file extension. Here is an example of a script file from the Basic Sample...
2020-11-22, 915🔥, 0💬

Hyperledger Composer Access Control File
What Is Hyperledger Composer Access Control (*.acl)? A Hyperledger Composer Access Control file is a source code file that define access control rules of which participant can access which assets and execute which transactions. A access control file uses the Access Control Language (ACL) and the .ac...
2020-11-22, 871🔥, 0💬

Hyperledger Composer Access Query File
What Is Hyperledger Composer Query File (*.qry)? A Hyperledger Composer Query file is a source code file that define queries to retrieve business objects from the Business Network. A access control file uses the Query language and the .qry file extension. Here is an example of an query file from the...
2020-11-22, 845🔥, 0💬

Hyperledger Composer Model File
What Is Hyperledger Composer Model File (*.cto)? A Hyperledger Composer model file is a source code file that define business object types used in a business network: Participants, Assets, Transactions and Events. A model file uses the CTO modeling language and the .cto file extension. Here is an ex...
2020-11-22, 833🔥, 0💬

Build Hyperledger Fabric from Source Code
How to Build Hyperledger Fabric from source code on Ubuntu? You can follow this tutorial to Build Hyperledger Fabric binary code from source code on Ubuntu. $ export GOPATH=$HOME/go $ cd $GOPATH/src/github.com/hyperle dger/fabric$ make dist-clean all ...You can take a coffee break, because it may ta...
2020-11-11, 2051🔥, 0💬

Install Hyperledger Fabric Prerequisites on Ubuntu
How to install Hyperledger Fabric Prerequisites on Ubuntu? You can follow this tutorial to install Hyperledger Composer Prerequisites on Ubuntu: 1. Verify your Ubuntu version: $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04.2 LTS Release: 18.04 Codenam...
2020-11-11, 1050🔥, 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, 1039🔥, 0💬

Hyperledger Fabric Environment Requirement
What are requirements for installing a Hyperledger Fabric development environment? Here are requirements for installing a Hyperledger Fabric 1.4 development environment: Operating System - Ubuntu Linux 14.04 / 16.04 LTS, or Mac OS 10.12. Git Client - Version 2.9 or higher. Git client allows you to d...
2020-11-11, 1028🔥, 0💬

Hyperledger Fabric Environment on Ubuntu
Where to find tutorials on Hyperledger Fabric Environment on Ubuntu? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Fabric Environment on Ubuntu. Hyperledger Fabric Environment Requirement Install Hyperledger Fabric Prerequisites o...
2020-11-11, 1025🔥, 0💬

"cryptogen" Command - Generate Keys and Certificates
How to run "cryptogen" command to generate private keys and public certificates to support organizations and users needed for BYFN (Build Your First Network)? You can follow this tutorial to run "cryptogen" command to generate private keys and public certificates to support organizations and users n...
2020-10-26, 1222🔥, 0💬

BYFN crypto-config.yaml Configuration File
What is the crypto-config.yaml Configuration File used in BYFN (Build Your First Network)? The crypto-config.yaml Configuration File provides settings on how to generate private keys and public certificates for network entities: order and peer organizations. Here is the default copy of crypto-config...
2020-10-26, 1123🔥, 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, 902🔥, 0💬

BYFN configtx.yaml Configuration File
What is the configtx.yaml Configuration File used in BYFN (Build Your First Network)? The configtx.yaml Configuration File provides settings on how the BYFN network should be created. Here is the default copy of crypto-config.yaml provided in BYFN: # Copyright IBM Corp. All Rights Reserved. --- ####...
2020-10-26, 893🔥, 0💬

<< < 15 16 17 18 19 20 21 22 23 24 25 > >>   Sort: Rank