Asad Hayat
Asad Hayat

Reputation: 400

hyperledger/fabric error while running "make membersrvc && membersrvc" not working

SO far i have done. I followed following documentation link in order to build my development enviroment.

https://github.com/hyperledger/fabric/blob/master/docs/dev-setup/devenv.md everything gone smooth then

$ make peer

It fails at first but after several attempt its complete.

Now i turned to follow the following link.

http://hyperledger-fabric.readthedocs.io/en/latest/Setup/Chaincode-setup/#option-1-vagrant-development-environment

In vagrant machine, in $GOPATH/src/github.com/hyperledger/fabric/ as I try to run make membersrvc && membersrvc i get the following error

make: *** No rule to make target 'membersrvc'. Stop.

I have tried and redo setup process for several time but no progress.

Upvotes: 2

Views: 1106

Answers (2)

PunNeng
PunNeng

Reputation: 234

git checkout v0.6 on your fabric folder.

membersrvc has been moved to its own repository called fabric-cop. the doc is based on fabric v0.6 https://github.com/hyperledger/fabric/tree/v0.6

Upvotes: 4

David.Yan
David.Yan

Reputation: 11

Membership services have been moved to it own repository and they removed it from fabric master .

https://github.com/hyperledger/fabric/commit/db7a41fd3fe8dc111c5f4e533410934a0ae8760f

Upvotes: 1

Related Questions