<< < 49 50 51 52 53 54 55 56 57 58 59 > >>   Sort: Date

Pull Hyperledger Fabric Orderer Image
How to Pull Hyperledger Fabric Orderer Image from docker hub? You can follow this tutorial to Pull Hyperledger Fabric Orderer Image from docker hub. 1. Check the Docker local repository: $ docker image list | grep fabric-orderer hyperledger/fabric-orderer latest ec4ca236d3d4 2 weeks ago 173MB hyperl...
2019-09-04, 1016🔥, 0💬

Top Level Structure of XHTML5 Documents
What is the Top Level Structure of an XHTML5 Document? An XHTML5 document is the XML serialization format of an HTML5 document. The top level structure of an XHTML5 document consists of three parts: XML processing instruction - Provides XML version information and character set declaration. Document...
2024-03-17, 1015🔥, 0💬

Hyperledger Composer Runtime
What Is the Hyperledger Composer Runtime? The primary component of the Hyperledger Composer is the Composer Runtime as shown in the following architecture diagram: |----------------------------- || Business | Business | ... | | Network 1 | Network 2 | ... | |----------- API -------------| |---------...
2021-12-28, 1015🔥, 0💬

buy.js - Application to Buy Paper
What is the Application to Buy Paper, buy.js? buy.js is a client application using the Hyperledger Fabric Node.js SDK library to invoke the buy() function of the papercontract running on the PaperNet. 1. View buy.js source code: (balaji)$ cd ~/hyperledger-binaries/fabric- samples(balaji)$ cd commerc...
2019-11-08, 1013🔥, 0💬

"byfn.sh generate" - Generate BYFN Configuration
How to run "byfn.sh generate" to Generate BYFN Network Configuration? You can follow this tutorial to run "byfn.sh generate" to Generate BYFN Network Configuration with default values. The "./byfn.sh generate" command automatically calls: "../bin/cryptogen" to generate certificates, and "../bin/conf...
2020-05-05, 1012🔥, 0💬

Start Fabric CA Server Natively
How to Start Fabric CA Server Natively? You can follow this tutorial to Start Fabric CA Server Natively. 1. Shutdown existing Fabric CA Server or any process (or docker container) that is using port 7054. $ docker ps | grep fabric-ca hyperledger/fabric-ca:amd64-1. 4.0Up 9 days 0.0.0.0:7054-&gt;7...
2019-10-18, 1012🔥, 0💬

"composer archive" to Generate BNA File
How to package my business network source code files into a BNA file for deployment? You can use the "composer archive create" command to package my business network source code files into a BNA file for deployment: $ cd tutorial-network $ composer archive create -t dir -n . $ ls -l tutorial-network...
2021-02-04, 1010🔥, 0💬

Turn on Orderer Peer Operation RESTful API
How to Turn on Orderer Peer Operation RESTful API? You can follow this tutorial to Turn on Orderer Peer Operation RESTful API. 1. Update Docker Compose YAML file, docker-compose-default.yaml to override the "operations" settings: $ cd fabric-orderer $ vi docker-compose-default.yaml # Copyright (c) F...
2019-05-14, 1008🔥, 0💬

Watch Peer Container Log
How to watch the log file of Peer Container Log? You can follow this tutorial to watch the log file of a peer container: 1. Set up a new terminal on the hosting system to follow the log file of the "peer0.org1.example.com" container: $ docker logs --tail 10 -f peer0.org1.example.com [gossip.comm] fu...
2020-07-07, 1007🔥, 0💬

"docker image rm" - Remove Image
How to remove an image from the local repository with "docker image rm" command? If an image is no longer needed, you can remove it from the local repository to save space using the "docker image rm" command. 1. Run "docker image list" command. You see the image, hello-world. fyicenter$ docker image...
2019-03-21, 1007🔥, 0💬

Download and Install Java SDK
How to download and install Java SDK for Hyperledger Fabric? You can follow this tutorial to download and install Java SDK for Hyperledger Fabric. 1. Install JDK 11: $ sudo add-apt-repository ppa:linuxuprising/java $ sudo apt-get update $ sudo apt-get install oracle-java11-installer $ java -version ...
2020-01-21, 1006🔥, 0💬

"configtx.yaml" Environment Configuration File
What is the "configtx.yaml" Environment Configuration File? "configtx.yaml" is a Configuration File used to control the Hyplerledger Composer development environment. It is located in the "composer" sub-directory: $ cd fabric-dev-servers/fabric-scri pts/hlfv12/composer$ ls -l -rw-r--r-- 1 fyicenter ...
2020-07-22, 1004🔥, 0💬

Start basic-network for PaperNet
How to Start basic-network for PaperNet? I want to follow commercial-paper Tutorials. You can follow this tutorial to start basic-network and make it ready to build PaperNet. 1. Start basic-network : $ cd ~/hyperledger-binaries/fabric- samples/basic-network$ ./start.sh ... Creating ca.example.com .....
2019-12-19, 1004🔥, 0💬

docker-compose-orderer.yaml - Docker Configuration
What is the Docker Compose configuration file for an Orderer peer? The Docker Compose configuration file, docker-compose-orderer.yaml, provides settings on how to run the orderer peer on the Docker engine. Here is a sample of docker-compose-orderer.yaml for a single orderer peer: $ cd fabric-orderer...
2019-08-23, 1004🔥, 0💬

"docker container start/stop" - Start/Stop Container
How to start a stopped container on the Docker Engine with "docker container start/stop" command? In order to use the "docker container start" or "docker start" command, we need to know the container ID or name. 1. Get the ID or name of a stopped container from the output of the "docker container li...
2019-06-04, 1004🔥, 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, 1003🔥, 0💬

Connect to Local Playground Server
How to connect to my local Hyperledger Composer Playground Server? When your local Hyperledger Composer Playground Server is started, it listens to the 8080 port by default. So you can connect to the server with a Web browser on the local system, using the following address: http://localhost:8080 If...
2021-02-17, 1001🔥, 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, 1001🔥, 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, 1000🔥, 0💬

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

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, 998🔥, 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, 997🔥, 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, 995🔥, 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, 993🔥, 0💬

<< < 49 50 51 52 53 54 55 56 57 58 59 > >>   Sort: Date