Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/palletone/digital-identity
Digital Identity Management
https://github.com/palletone/digital-identity
Last synced: 2 days ago
JSON representation
Digital Identity Management
- Host: GitHub
- URL: https://github.com/palletone/digital-identity
- Owner: palletone
- License: gpl-3.0
- Created: 2019-03-25T07:35:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-29T06:35:57.000Z (over 5 years ago)
- Last Synced: 2023-07-27T22:27:28.686Z (over 1 year ago)
- Language: Go
- Size: 1.62 MB
- Stars: 1
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# digital-identity
Digital identity management relies on the fabric ca server for the distribution of digital certificates.
This project provides CA client support for Palletone.
# To Do
- Do some preparation before using them.
- Install the server binary commands into the $GOPATH/bin directory
````
$ go get -u github.com/hyperledger/fabric-ca/cmd/...
````- Switch to the source directory:
````
$ cd $GOPATH/src/github.com/hyperledger/fabric-ca/
````- Compile using the make command:
````
$ make fabric-ca-server
````- Generate the bin directory, which contains the fabric-ca-server executable.
- Setting environment variables
````
$ export PATH=$GOPATH/src/github.com/hyperledger/fabric-ca/bin:$PATH
````# *initialize*
- Return to the user directory
````
$ cd ~
$ mkdir cawork
$ cd cawork
$ mkdir root immediateca
$ cd root
````- Init
````
$ fabric-ca-server init -b admin:pass
````- Start
````
$ fabric-ca-server start -b admin:pass
````- Start immediateca
$ cd immediateca
````
$ fabric-ca-server start -b admin:pass -p 7064 -u http://admin:pass@localhost:7054
````! If port occupancy occurs, modify the configuration file.