Install the blockchain fabric by completing the following tasks:
- Building the fabric core
- Building outside of Vagrant
- Code contributions
- Writing Chaincode
- Setting Up a Network
- Working with CLI, REST, and Node.js
- Configuration
- Logging
The following instructions assume that you have followed the development environment getting started instructions.
To access your VM, run
vagrant ssh
From within the VM, you can build, run, and test your environment.
cd $GOPATH/src/github.com/hyperledger/fabric
make peer
To see what commands are available, simply execute the following commands:
$ peer
You should see some output similar to below (NOTE: The root command below is hardcoded in the main.go and the build creates the peer
executable).
Usage:
peer [command]
Available Commands:
node node specific commands.
network network specific commands.
chaincode chaincode specific commands.
help Help about any command
Flags:
-h, --help[=false]: help for peer
--logging-level="": Default logging level and overrides, see core.yaml for full syntax
Use "peer [command] --help" for more information about a command.
The node start
command will initiate a peer process, with which one can interact by executing other commands. For example, the node status
command will return the status of the running peer. The full list of commands is the following:
node
start Starts the node.
status Returns status of the node.
stop Stops the running node.
network
login Logs in user to CLI.
list Lists all network peers.
chaincode
deploy Deploy the specified chaincode to the network.
invoke Invoke the specified chaincode.
query Query using the specified chaincode.
help Help about any command
Note: If your GOPATH environment variable contains more than one element, the chaincode must be found in the first one or deployment will fail.
New code must be accompanied by test cases both in unit and Behave tests.
Use the following sequence to run all unit tests
cd $GOPATH/src/github.com/hyperledger/fabric
make unit-test
To run a specific test use the -run RE
flag where RE is a regular expression that matches the test case name. To run tests with verbose output use the -v
flag. For example, to run the TestGetFoo
test case, change to the directory containing the foo_test.go
and call/excecute
go test -v -run=TestGetFoo
You must also run the Node.js unit tests to insure that the Node.js client SDK is not broken by your changes. To run the Node.js unit tests, follow the instructions here.
Behave tests will setup networks of peers with different security and consensus configurations and verify that transactions run properly. To run these tests
cd $GOPATH/src/github.com/hyperledger/fabric
make behave
Some of the Behave tests run inside Docker containers. If a test fails and you want to have the logs from the Docker containers, run the tests with this option
behave -D logs=Y
Note, in order to run behave directly, you must run 'make images' first to build the necessary peer
and member services
docker images. These images can also be individually built when go test
is called with the following parameters:
go test github.com/hyperledger/fabric/core/container -run=BuildImage_Peer
go test github.com/hyperledger/fabric/core/container -run=BuildImage_Obcca
It is possible to build the project and run peers outside of Vagrant. Generally speaking, one has to 'translate' the vagrant setup file to the platform of your choice.
- Git client
- Go - 1.6 or later
- RocksDB version 4.1 and its dependencies
- Docker
- Pip
- Set the maximum number of open files to 10000 or greater for your OS
Make sure that the Docker daemon initialization includes the options
-H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock
Typically, docker runs as a service
task, with configuration file at /etc/default/docker
.
Be aware that the Docker bridge (the CORE_VM_ENDPOINT
) may not come
up at the IP address currently assumed by the test environment
(172.17.0.1
). Use ifconfig
or ip addr
to find the docker bridge.
apt-get install -y libsnappy-dev zlib1g-dev libbz2-dev
cd /tmp
git clone https://github.com/facebook/rocksdb.git
cd rocksdb
git checkout v4.1
PORTABLE=1 make shared_lib
INSTALL_PATH=/usr/local make install-shared
pip install --upgrade pip
pip install behave nose docker-compose
pip install -I flask==0.10.1 python-dateutil==2.2 pytz==2014.3 pyyaml==3.10 couchdb==1.0 flask-cors==2.0.1 requests==2.4.3
To make building on Z easier and faster, this script is provided (which is similar to the setup file provided for vagrant). This script has been tested only on RHEL 7.2 and has some assumptions one might want to re-visit (firewall settings, development as root user, etc.). It is however sufficient for development in a personally-assigned VM instance.
To get started, from a freshly installed OS:
sudo su
yum install git
mkdir -p $HOME/git/src/github.com/hyperledger
cd $HOME/git/src/github.com/hyperledger
git clone https://github.com/hyperledger/fabric.git
source fabric/devenv/setupRHELonZ.sh
From there, follow instructions at Installation:
cd $GOPATH/src/github.com/hyperledger/fabric
make peer unit-test behave
First, install Docker, as described here.
The database by default writes to /var/hyperledger. You can override this in the core.yaml
configuration file, under peer.fileSystemPath
.
brew install go rocksdb snappy gnu-tar # For RocksDB version 4.1, you can compile your own, as described earlier
# You will need the following two for every shell you want to use
eval $(docker-machine env)
export PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH"
cd $GOPATH/src/github.com/hyperledger/fabric
make peer
We welcome contributions to the Hyperledger Project in many forms. There's always plenty to do! Full details of how to contribute to this project are documented in the CONTRIBUTING.md file.
To set up an development network composed of several validating peers, follow the instructions on the Devnet Setup page. This network leverages Docker to manage multiple peer instances on the same machine, allowing you to quickly test your chaincode.
Since chaincode is written in Go language, you can set up the environment to accommodate the rapid edit-compile-run of your chaincode. Follow the instructions on the Sandbox Setup page, which allows you to run your chaincode off the blockchain.
When you are ready to start interacting with the peer node through the available APIs and packages, follow the instructions on the CoreAPI Documentation page.
Configuration utilizes the viper and cobra libraries.
There is a core.yaml file that contains the configuration for the peer process. Many of the configuration settings can be overridden on the command line by setting ENV variables that match the configuration setting, but by prefixing with 'CORE_'. For example, logging level manipulation through the environment is shown below:
CORE_PEER_LOGGING_LEVEL=CRITICAL peer
Logging utilizes the go-logging library.
The available log levels in order of increasing verbosity are: CRITICAL | ERROR | WARNING | NOTICE | INFO | DEBUG
See specific logging control instructions when running the peer process.