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

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

BYFN docker-compose-cli.yaml Configuration File
What is the docker-compose-cli.yaml Configuration File used in BYFN (Build Your First Network)? The docker-compose-cli.yaml Configuration File provides settings on Docker containers to run the BYFN network. Here is the default copy of docker-compose-cli.yaml provided in BYFN: # SPDX-License-Identifi...
2020-10-20, 1006🔥, 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, 1005🔥, 0💬

Install Docker CE on Ubuntu with "apt"
How to install Docker CE (Community Edition) on Ubuntu with "apt"? You can follow this tutorial to install Docker CE (Community Edition) on Ubuntu with the "apt" tool. 1. Get your Ubuntu codename with "lsb_release" command. fyicenter$ lsb_release -cs bionic 2. Get your system architecture name with ...
2019-04-18, 1005🔥, 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, 1002🔥, 0💬

Join Peer to BYFN Network Channel
How to join the default peer to a BYFN network Channel? You can follow this tutorial to join the default peer to a BYFN network Channel. In last tutorial, we have created a transaction file, channel.tx, that contains a transaction message to create a channel called "mychannel" on the BYFN network. N...
2020-09-30, 1000🔥, 0💬

"docker run hello-world" Test on Ubuntu
How to run the "docker run hello-world" Test on Ubuntu? "hello-world" is simple Docker container application that displays the "Hello from Docker!". "hello-world" can be used to as test for you local Docker environment as shown below: fyicenter$ docker run hello-world Unable to find image 'hello-wor...
2019-04-30, 999🔥, 0💬

View Channel Blockchain and Download Blocks
How to View Blockchain and Download Blocks of a Hyperledger Fabric Channel? You can follow this tutorial to View Blockchain and Download Blocks of a Hyperledger Fabric Channel. 1. Connect to the CLI container of the Hyperledger Fabric network: $ docker exec -it cli bash bash-4.4# 2. List channels jo...
2020-08-13, 998🔥, 0💬

Deploy peer0.org1.example.com Manually
How to Deploy peer0.org1.example.com as a Docker container manually? You can follow this tutorial to Deploy peer0.org1.example.com as a Docker container manually. 1. Verify the configuration of the peer0.org1.example.com container defined in the docker-compose.yml file: $ cd ~/hyperledger-binaries/f...
2020-03-25, 997🔥, 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, 997🔥, 0💬

CTO Language Statements
What are Business Network Model CTO Language Statements? Business Network Model CTO language supports 8 types of statements. namespace - The "namespace" statement declares a namespace as the prefix for all data types defined in this CTO file. The "namespace" statement has the same syntax as the "nam...
2021-08-04, 996🔥, 1💬

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

BYFN CLI Container Missing Admin Certificates
How to fix the ".../org1.example.com/users/Ad min@org1.example.com/mspdoes not exist" when running the BYFN CLI "peer" command? When you build your BYFN network manually, you may end up missing admin user certificate on the CLI Docker container. 1. Check the certificate directory for the org1.exampl...
2020-10-10, 994🔥, 0💬

Download Blocks from Blockchain
How to download blocks from the blockchain on the peer? You can follow this tutorial to download blocks from the blockchain on the peer. 1. Connect to the peer container and setup membership variables: $ docker exec -it peer0.org1.example.com bash root@aedfd08717a5:/opt/gopath/ src/github.com/hyperle...
2020-03-25, 993🔥, 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, 992🔥, 0💬

"gyp ERR! stack Error: EACCES: permission denied"
Why am I getting the "gyp ERR! stack Error: EACCES: permission denied" error when installing Hyplerledger Composer REST API Server? You may get the "gyp ERR! stack Error: EACCES: permission denied" error, when using older version of "npm" to install Hyplerledger Composer REST API server: $ sudo npm ...
2021-02-17, 991🔥, 0💬

What is Hyperledger Composer Playground Server
What is Hyperledger Composer Playground Server? Hyperledger Composer Playground Server is a Web server that allows you to run and control your own Hyperledger Composer Playground. Hyperledger Composer Playground Server is included in the Hyperledger Composer tool set. It is normally installed as par...
2021-02-17, 989🔥, 0💬

Introduction of Hyperledger Composer
Where to find tutorials on Introduction of Hyperledger Composer. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Introduction of Hyperledger Composer. Hyperledger Composer Components Hyperledger Composer Runtime   ⇒ Hyperledger Composer Co...
2021-12-28, 987🔥, 0💬

"docker container start" - Start Alpine Container
How to Start Alpine Container with the "docker container start" command? If you want to start the Alpine container with its default command, you can use the "docker container start" command. 1. Run "docker container start" command with console attached and interactively. You see no output messages o...
2019-02-12, 987🔥, 0💬

"microsoft/windowsservercore" - Windows Base Image
What is the Windows Base Image, "microsoft/windowsservercore"? If you want to build any Docker images for Windows platform, you should take a look at the Windows base image first. 1. Search for Windows related images: C:\fyicenter&gt; docker search windows microsoft/windowsservercore The officia...
2022-12-15, 986🔥, 0💬

"docker image pull" - Pull Image
How to pull an image from the remote registry to the local repository with "docker image pull" command? If you know the name of a Docker image, you can pull it from the remote registry to your local repository using the "docker image pull", or "docker pull" command. 1. Run "docker image pull" comman...
2019-04-22, 985🔥, 0💬

Incompatible Chaincode on BYFN Peers
How to list installed and instantiated chaincodes on BYFN Peers? You can follow this tutorial to list and review installed and instantiated chaincodes on peer nodes of your BYFN network. 1. Connect to the BYFN CLI container and check the default peer: $ docker exec -it cli bash bash-4.4# echo $CORE_...
2020-09-15, 984🔥, 0💬

Install Hyperledger Composer on UBuntu
How to install Hyplerledger Composer on Ubuntu? You can follow this tutorial to install Hyplerledger Composer on Ubuntu 1. Install Hyplerledger Composer CLI: $ sudo npm install -g composer-cli ... installation messages ... $ composer --version v0.20.8 2. Install Hyplerledger Composer REST API Server...
2021-05-04, 983🔥, 0💬

Hyperledger Composer Environment Channels
What Channels are included in my Hyperledger Composer Environment? In the fabric-dev-servers.tar.gz package, only one channel, "composerchannel", is created in the Hyperledger Composer Developer Environment. The peer node peer0.org1.example.com has been configured to this channel. You can only deplo...
2020-07-14, 983🔥, 0💬

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