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

Fabric Network without CA Server
Can I run a Hyperledger Fabric Network without Fabric CA Server? Yes, you can run a Hyperledger Fabric Network without Fabric CA Server. In that case, you have to manage PKI certificate services manually For example, you need to do the following manually to add a new user to access your ledger peer:...
2019-10-18, 1040🔥, 0💬

Introduction to Docker
Where to find tutorials as Introduction to Docker, the Container Platform? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team as Introduction to Docker, the Container Platform. What Is Docker Docker Components and Architecture   ⇒ What Is Docker ⇐ D...
2019-06-08, 1040🔥, 0💬

BYFN Chaincode Docker Container
What is the BYFN chaincode Docker container? The BYFN chaincode Docker container represents the running instance of the "mycc" chaincode. When "mycc" chaincode is instantiated from peer0.org1, a chaincode Docker container (shim) is deployed and started on the Docker engine. You can find chaincode co...
2020-09-15, 1039🔥, 0💬

"docker container create --name" - Name Container
How to create a new container with a name from an image with "docker container create --name" command? If you create a new container with default options, it will be given a random name. You should use the "--name" to provide your own name. 1. Create a new container with random name. fyicenter$ dock...
2019-03-25, 1039🔥, 0💬

Install Docker CE Using Hyperledger Script
How to install Docker on Ubuntu CE (Community Edition) using the Hyperledger Composer Script? Since Docker is required to run Hyperledger Composer, hyperledger.github.io offers a shell script to install Docker on Ubuntu CE (Community Edition) together with other packages. 1. Download the Hyperledger...
2019-05-30, 1036🔥, 0💬

"docker container run" - Create and Run Container
How to create a new container and run the default command from an image with "docker container run" command? If you want to create a new container from an image, and start the container with the default command in one step, you can use the "docker container run" command. Here is a list of options su...
2019-03-25, 1036🔥, 0💬

Windows vs. Linux Containers
What are differences between Windows Containers and Linux Containers? A Docker server environment has its own OS (Operating System) like any other computing environments. Currently there are two main OS types supported by the Docker server: Linux and Windows. In order to run a Docker container on a ...
2021-11-13, 1035🔥, 0💬

Query Chaincode Property on BYFN Channel
How to Query Chaincode Property on BYFN Channel? An instance of a chaincode can be viewed as an object of a class in an execution environment. It can hold properties. You can run the "peer chaincode query" command to query the current value of a given property of a given chaincode instance. 1. Verif...
2020-09-30, 1035🔥, 0💬

See New Paper on CouchDB Server
How to See New Paper on CouchDB server? If you are the PaperNet admin, you may want to see the world state of the asset managed by papercontract. PaperNet uses CouchDB to store the world state and configured with a REST API on port 5984. 1. List all databases: (magnetocorp admin)$ curl http://localh...
2019-11-21, 1035🔥, 0💬

Upgrade Chaincode Instance on BYFN
How to upgrade chaincode instance on BYFN? You can follow this tutorial to upgrade the chaincode instance on BYFN. You can use this process to fix any issues with chaincode instance without destroy its data. 1. Install new version, 2.0, of the chaincode on the default peer, peer0.org1. bash-4.4# ech...
2020-09-12, 1034🔥, 1💬

Verify the WYFA Network
How to Verify the Hyperledger Fabric Network to run the WYFA (Writing Your First Application) tutorial? You can follow these steps to verify the Hyperledger Fabric Network to run the WYFA (Writing Your First Application) tutorial. 1. Connect to the CLI container: $ docker exec -it cli bash bash-4.4#...
2020-02-29, 1034🔥, 0💬

"docker container run" - Create Container with New Command
How to Create a new Container with a New Command using the "docker container run" command? If you want to create an Alpine container that starts with a new command different than the default command, you need to use the "docker container run" command with your Linux command specified. 1. Create a ne...
2019-02-06, 1033🔥, 0💬

Interfaces to Communicate with Ledger Peer
Where to find tutorials on Interfaces to Communicate with Ledger Peer? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Interfaces to Communicate with Ledger Peer. Main Interfaces to Communicate with Ledger Peer Download and Install Golang SDK D...
2020-01-29, 1032🔥, 0💬

"docker container rm" - Remove Container
How to remove a container from the Docker Engine with "docker container rm" command? If a container is no longer needed, you can remove it from the Docker Engine to save space using the "docker container rm" command. 1. Run "docker container list --all" command. You see 2 containers created from the...
2019-04-12, 1032🔥, 0💬

CORE_PEER_* Environment Variables on BYFN CLI
What is the default peer and how to change it on the BYFN CLI container? On the BYFN CLI container, you can manage other peer nodes with the "peer" command. When you run a "peer" command, it will connect to the default peer node define by these environment variables: CORE_PEER_ADDRESS=peer0.org1.e xa...
2020-09-30, 1030🔥, 0💬

Verify World State in CouchDB
How to Verify World State in CouchDB container? Since peer0.org1.example.com uses the couchdb container to store the world state, you can check the current states of all assets managed by the chaincode. 1. Get database name for the chaincode "fabcar": $ curl http://localhost:5984/_all_dbs ["_replica...
2020-02-20, 1029🔥, 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, 1028🔥, 0💬

Install Composer Prerequisites on Ubuntu
How to install Hyplerledger Composer Prerequisites on Ubuntu? The best way to install Hyplerledger Composer Prerequisites on Ubuntu is to download and run the prereqs-ubuntu.sh script. 1. Verify your Ubuntu version: $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: U...
2021-05-04, 1027🔥, 0💬

Objectives of WYFA tutorials
What are the objectives of WYFA (Writing Your First Application) tutorials? Objectives of WYFA (Writing Your First Application) tutorials provided at hyperledger-fabric.readthedocs .ioWebsite are: 1. Setting up a development environment. Our application needs a network to interact with, so we’ll get...
2020-03-15, 1027🔥, 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, 1027🔥, 0💬

Building Docker Image with "docker build"
Where to find tutorials on Building new Docker Images with "docker build" command? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Building new Docker Images with "docker build" command. What Is "docker build" Command Build "hello" Image from A...
2019-02-11, 1024🔥, 0💬

What I You Test on Developer Portal
What API can I test on the Developer Portal? What API you can test on the Developer Portal is depending is limited to those APIs and operations that you have been given with subscription keys. 1. If you are a publisher user in the "Administrator" group, you can test all API operations included in al...
2018-03-31, 1024🔥, 0💬

"byfn.sh up" - Start Up BYFN Network
How to run "byfn.sh up" to start up the BYFN Network? You can follow this tutorial to run "byfn.sh up" to Start up the BYFN Network. The "./byfn.sh up" command automatically generates the configuration again, deploys/starts all containers to the Docker Engine, and runs a set of chaincode tests. $ cd...
2020-05-05, 1022🔥, 0💬

Hyperledger Related Terminology
Hyperledger Related Terminology: Asset - An Asset is a data object with a unique identifier. The content of an asset can be anything from a simple numeric value to a complex data object. For example, an asset can represent a financial asset, like a bank account in a bank system. Blockchain - A Block...
2020-01-21, 1021🔥, 0💬

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