분류 전체보기

보안 및 블록체인/블록체인

하이퍼레저 패브릭(Hyperledger Fabric) v2.2 - but chaincode is not installed 에러

에러 peer lifecycle chaincode commit \ -o localhost:7050 \ --ordererTLSHostnameOverride orderer.example.com \ --tls \ --cafile $ORDERER_CA \ --channelID mychannel \ --name basic \ --peerAddresses localhost:7051 \ --tlsRootCertFiles ${PWD}/organizations/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt \ --peerAddresses localhost:9051 \ --tlsRootCertFiles ${PWD}/organizatio..

보안 및 블록체인/블록체인

하이퍼레저 패브릭(Hyperledger Fabric) v2.2 COMPOSE_PROJECT_NAME Multiple 설정 및 문제 해결방법

오류 상황 Hyperledger Fabric Network를 구축하고 'COMPOSE_PROJECT_NAME=net docker-compsoe up -d' 명령어를 통해 도커 컨테이너를 실행시키는 과정에서 Orderer가 계속 꺼지는 상황이 발생했다. 백그라운드에서 실행하지 않고 로그를 정상동작하는 도커컨에티너와 비교해본 결과 Orderer에 TLS가 계속 Warning이 나면서 일정시간이 지나면 Orderer가 종료되었다. 오류 원인 오류원인이 정확하지는 않지만 이전에 다른 Hyperledger Fabric 네트워크를 돌려놓고 컨테이너를 종료한 상태에서 Fabric Network의 이름과 Docker-Compose.yaml파일의 Peer들의 env중 'CORE_VM_DOCKER_HOSTCONFIT_NE..

보안 및 블록체인/블록체인

하이퍼레저 패브릭(Hyperledger Fabric) v2.2 - 채널에 Org 추가

0. 사전 환경설정 및 필수지식 - Hyperledger Docs를 읽으며 과도한 삽질에 대한 경험이 필요(처음 보면 뭐가 뭔지 모를 수 있음...내가 그랬기 때문에) - Fabric-Samples 설치 후 Requiresments에 대한 툴 및 라이브러리는 설치되어있어야함(Go, Node 등) - Cryptogen을 통한 Key생성 - Docker-compose.yaml 파일 생성 - configtx.yaml에 새로운 Org추가 Adding an Org to a Channel — hyperledger-fabricdocs main documentation Docs » Tutorials » Adding an Org to a Channel Edit on GitHub Adding an Org to a Chan..

보안 및 블록체인/블록체인

하이퍼레저 패브릭(Hyperledger Fabric) v2.2 - #3 Docker-compose.yaml 네트워크 설정 & 채널생성

1. Hyperledger Fabric Docker-compose.yaml 환경변수 정의 Upgrading your components — hyperledger-fabricdocs main documentation Upgrading your components Audience: network administrators, node administrators For information about special considerations for the latest release of Fabric, check out Upgrading to the latest release of Fabric. This topic will only cover the process for u hyperledger-fabric.re..

보안 및 블록체인/블록체인

하이퍼레저 패브릭(Hyperledger Fabric) v2.2 - #1 Peer 키생성 - Cryptogen

cryptogen Cryptogen명령어는 Organization의 키를 생성해 Hyperledger Fabric에서 네트워크 사전 구성 cryptogen — hyperledger-fabricdocs main documentation Docs » Commands Reference » cryptogen Edit on GitHub cryptogen cryptogen is an utility for generating Hyperledger Fabric key material. It is provided as a means of preconfiguring a network for testing purposes. It would normally not be used in the operat hyperledger-..

공부/알고리즘

9184 문제 신나는 함수 실행 python - [백준-실버2/재귀함수]

문제 내용 요약 if a 20, then w(a, b, c) returns: w(20, 20, 20) if a < b and b < c, then w(a, b, c) returns: w(a, b, c-1) + w(a, b-1, c-1) - w(a, b-1, c) otherwise it returns: w(a-1, b, c) + w(a-1, b-1, c) + w(a-1, b, c-1) - w(a-1, b-1, c-1) 위의 함수를 구현하는 것은 매우 쉽다. 하지만, 그대로 구현하면 값을 구하는데 매우 오랜 시간이 걸린다. (예를 들면, a=15, b=15, c=15) a, b, c가 주어졌을 때, w(a, b, c)를 출력하는 프로그램을 작성하시오. 문제 원리파악 다이나믹 프로그래밍을 풀때 Top Down..

1Seok
'분류 전체보기' 카테고리의 글 목록 (4 Page)