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

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, 969🔥, 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, 968🔥, 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, 968🔥, 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, 966🔥, 1💬

Cursor.execute() with PyMySQL
How to use Cursor to run MySQL statements with PyMySQL package? PyMySQL package provides you 2 ways to run MySQL statements: 1. Use con.query() - If you don't want to receive any data back from the MySQL server, you can use the Connection.query() method to run MySQL statements. 2. Use cur.execute() ...
2021-09-09, 965🔥, 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, 964🔥, 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, 963🔥, 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, 962🔥, 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, 960🔥, 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, 960🔥, 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, 957🔥, 0💬

Deploy cli Container Manually
How to Deploy cli as a Docker container manually? You can follow this tutorial to Deploy cli as a Docker container manually. 1. Verify the configuration of the cli container defined in the docker-compose.yml file: $ cd ~/hyperledger-binaries/fabric- samples/basic-network$ more docker-compose.yml ......
2020-03-15, 957🔥, 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, 955🔥, 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, 955🔥, 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, 955🔥, 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, 954🔥, 0💬

"docker image" - Manage Images
How to manage images with "docker image" commands? A Docker image is a binary file used to build containers. Images are used to store and ship applications. You can use "docker image" commands to manage Docker images. Here is a list of sub-commands supported by "docker image": fyicenter$ docker imag...
2019-04-05, 951🔥, 0💬

Docker Components and Architecture
What are the components of Docker and how they related to each other? Docker consists of several main components: Docker Server (also called Docker Daemon, Docker Server, "dockerd") - The background process that manages Docker containers and handles container objects. The daemon listens for requests...
2019-05-28, 950🔥, 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, 949🔥, 0💬

"docker container create alpine" - Create Alpine Container
How to Create Alpine Container with the "docker container create alpine" command? With the Alpine Docker Image downloaded to the local repository, you can use the "docker container create alpine" command to create a new container from the Alpine image. 1. Run "docker container create" command to cre...
2018-12-25, 948🔥, 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, 946🔥, 0💬

"fabric-ca-client certificate list" - List Certificates
How to List Certificates with the "fabric-ca-client certificate list" command? If you want get a list of certificates from the Fabric CA Server, you can run the "fabric-ca-client certificate list" command: $ export FABRIC_CA_CLIENT_HOME=~/fabric -ca/native-client/admin$ ~/go/bin/fabric-ca-client cer...
2019-09-27, 945🔥, 0💬

Business Network Development Concepts
Where to find tutorials on Business Network Development Concepts. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Business Network Development Concepts. Business Network Source Code Architecture Hyperledger Composer Model File Hyperledger Compo...
2022-02-19, 939🔥, 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, 939🔥, 0💬

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