fabric-ca-client颁发Orderer节点证书

news/2024/11/8 8:52:49/

创建Orderer节点:

function createOrderer {echo
echo "Enroll the CA admin"
echo
mkdir -p organizations/ordererOrganizations/example.comexport FABRIC_CA_CLIENT_HOME=${PWD}/organizations/ordererOrganizations/example.comset -x
fabric-ca-client enroll -u https://admin:adminpw@localhost:9054 --caname ca-orderer --tls.certfiles ${PWD}/organizations/fabric-ca/ordererOrg/tls-cert.pem
set +xecho 'NodeOUs:
Enable: true
ClientOUIdentifier:
Certificate: cacerts/localhost-9054-ca-orderer.pem
OrganizationalUnitIdentifier: client
PeerOUIdentifier:
Certificate: cacerts/localhost-9054-ca-orderer.pem
OrganizationalUnitIdentifier: peer
AdminOUIdentifier:
Certificate: cacerts/localhost-9054-ca-orderer.pem
OrganizationalUnitIdentifier: admin
OrdererOUIdentifier:
Certificate: cacerts/localhost-9054-ca-orderer.pem
OrganizationalUnitIdentifier: orderer' > ${PWD}/organizations/ordererOrganizations/example.com/msp/config.yaml

http://www.ppmy.cn/news/172100.html

相关文章

invalid sub button url domain hint 解决方法

腾讯官方的例子有问题! invalid sub button url domain hint 无效的子菜单域名错误!设置菜单的url的时候,习惯性的设置例如www.qq.com不应该这样写,而应该写全 https://www.qq.com/ 注意的是一定要包涵http或者https&#xff0c…

k8s pv,pvc无法删除问题

k8s pv,pvc无法删除问题 一般删除步骤为:先删pod再删pvc最后删pv 但是遇到pv始终处于“Terminating”状态,而且delete不掉。如下图: 解决方法: 直接删除k8s中的记录: 1 kubectl patch pv xxx -p {"metadata&…

error pulling image configuration: read tcp xxx.xxx.x.xxx:xx->xxx.xx.xxx.xx:xxx: read: connection

问题描述: 当我们使用docker pull拉取镜像的时候,会报error pulling image configuration: read tcp xxx.xxx.x.xxx:xx->xxx.xx.xxx.xx:xxx: read: connection类似这样的错误。 问题分析: 由于国内网络问题,无法连接到 dock…

ORA-15099: disk ‘/dev/asm_data‘ is larger than maximum size of 2097152 MBs

数据库版本 12c(12.1.0.2)ASM 12c以后支持超过2T 的盘记录ORA-15099 问题处理过程: ORA-15099:disk /dev/asm_data is larger than maximum size of 2097152 MBs查看磁盘的组的rdbms兼容版本 [gridl01testdb01 ~]$ asmcmd lsattr -G DATA -l Name …

固件错误Possible missing firmware解决办法

问题: W: Possible missing firmware /lib/firmware/rtl_nic/rtl8125a-3.fw for module r8169 解决方法: 1,进入如下这个地址,固件文件非常全面,找到适合自己的版本, https://git.kernel.org/pub/scm/linux…

ASM无法启动的问题分析(一)(r7笔记第87天)

最近碰到了一个关于ASM无法启动的案例,当然这个案例比较长,准备分两篇来写。 问题的背景如下: 目前存在一套standalone的环境,采用了ASM作为存储管理,业务属于实时统计,在某一天下班的时候开发的同事突然联…

【Docker】Docker 快速入门(精讲)

文章目录 一、Docker 简介1、docker的概念2、镜像(images)、容器(container)和仓库(DockerHub)3、容器与虚拟机的区别 二、Docker 安装1、基本步骤2、配置阿里云镜像加速 三、Docker 卸载四、Docker 的基本…

linux vmware shell 虚拟机挂载硬盘过程

【小白入门 通俗易懂】2021韩顺平 一周学会Linux https://www.bilibili.com/video/BV1Sv411r7vd?p59 step1 查看当前计算机硬盘 [rootshell37 ~]# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 20G 0 disk ├─sda1 8:1 0 300M 0 part /boot ├─sda2 8:2 0 2G …