본문 바로가기
Tech/BlockChain

하이퍼레저 패프릭(1)

by 트리시스 2020. 9. 13.
반응형

타의적으로 시작하는 하이퍼레저 패브릭..

일단 준비사항은..

 

1. CentOS or ubuntu 등 리눅스 OS

2. 위 리눅스 OS를 담을 버추얼머신 : Virtual Box or VMware WorkStation

 

3. Docker, Docker-compose 설치

 

$ sudo apt-get update

$ sudo apt-get install \

apt-transport-https \

ca-certificates \ curl \

gnupg-agent \ software-properties-common

 

$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

 

$ sudo add-apt-repository \

"deb [arch=amd64] https://download.docker.com/linux/ubuntu \

$(lsb_release -cs) \

stable"

 

$ sudo apt-get update

$ sudo apt-get install docker-ce docker-ce-cli containerd.io

 

$ apt-cache madison docker-ce

 

다음 도커 컴포즈 설치..

$ sudo apt -y install docker-compose

 

도커 컴포즈 설치 확인..

$ docker-compose version

 

 

4. Go

$ wget https://dl.google.com/go/go1.10.4.linux-amd64.tar.gz

$ sudo tar-C /usr/local -xzf go1.10.4.linux-amd64.tar.gz

$ echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.profile

$ source .profile

$ go version

 

5. Python

python -v

버전 확인해보고 없으면 설치..

$ sudo apt -y install python

 

6. Node.js / npm 설치

$ sudo apt install nodejs

$ node -v

$ npm -v

 

 

7. GNU make, gcc/g++, libtool 설치

$ sudo apt -y install make gcc g++ libtool

 

반응형

'Tech > BlockChain' 카테고리의 다른 글

블록체인(BlockChain) 도입 시 한번 더 생각해보자  (0) 2019.11.04

댓글