Tools, FAQ, Tutorials:
Start Fabric CA Server Natively
How to Start Fabric CA Server Natively?
✍: FYIcenter.com
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.0 Up 9 days 0.0.0.0:7054->7054/tcp ca.example.com $ docker stop ca.example.com
2. Create a working directory to run Fabric CA Server:
$ mkdir fabric-ca/native-server $ cd fabric-ca/native-server
3. Start Fabric CA Server natively:
$ $GOPATH/bin/fabric-ca-server start -b admin:adminpw & [INFO] Configuration file location: ./fabric-ca-server-config.yaml [INFO] Starting server in home directory: ./ [INFO] Server Version: 1.4.2 [INFO] Server Levels: &{Identity:2 Affiliation:1 Certificate:1 Credential:1 RAInfo:1 Nonce:1} [INFO] The certificate is at: ./ca-cert.pem [INFO] Initialized sqlite3 database at ./fabric-ca-server.db [INFO] secret key file location: ./msp/keystore/IssuerSecretKey [INFO] public key file location: ./IssuerPublicKey [INFO] private key file location: ./msp/keystore/IssuerRevocationPrivateKey [INFO] public key file location: ./IssuerRevocationPublicKey [INFO] Home directory for default CA: ./ [INFO] Operation Server Listening on 127.0.0.1:9443 [INFO] Listening on http://0.0.0.0:7054 $ jobs [1]+ Running $GOPATH/bin/fabric-ca-server start -b admin:adminpw &
As you can see, Fabric CA Server is running natively with a default admin identity: admin:adminpw. It is listening at 2 ports: 9443 for operation requests, and 7054 for client requests.
Â
⇒ Enroll Fabric CA Client Admin Identity
⇠Insatll Fabric CA Server and Client
⇑ Fabric CA (Certificate Authority)
⇑⇑ Hyperledger Tutorials
2019-10-18, 872👍, 0💬
Popular Posts:
What is Azure API Management Gateway? Azure API Management Gateway is the Azure Web server that serv...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...
How to use the "rewrite-uri" Policy Statement for an Azure API service operation? The "rewrite-uri" ...
Where to get a JSON.stringify() Example Code in JavaScript? Here is a good JSON.stringify() example ...
What Is HTML? HTML (HyperText Markup Language) is the standard markup language for creating Web page...