首页 > 解决方案 > 如何将cryptogen工具生成的密钥与fabric CA同步

问题描述

我在我的项目中使用面料,

1.I have generated the keypairs using the cryptogen tool.
2.I have initiated the fabric ca server using CA key, which is generated using above cryptogen tool.
3.I enroll the admin to the fabric CA its generate the wallet with private key and public key and certificate.
4.Then i register the user to that fabric ca server i get the user certificate, private key.
5. Then i create the channel and install the chain code and initiate it.

当我使用上面的用户注册从节点 js 查询链代码时,它会抛出错误

MSP 错误:提供的身份无效:x509:证书由未知机构签名

在生成加密工具时,我是否需要提供与 Fabric ca 相关的任何详细信息。

标签: hyperledger-fabrichyperledgerhyperledger-fabric-ca

解决方案


@法玛,

MSP error: the supplied identity is not valid: x509: certificate signed by unknown authority

您可能使用了由一个 CA 颁发的网络证书

稍后您使用另一个 CA 创建了管理员证书

这就是它抱怨的原因

删除所有容器,清除所有内容并重新开始,确保您不会两次从 cryptogen 生成证书


推荐阅读