ipfs 3

[IPFS] IPFS가 무엇일까

참고 : https://docs.ipfs.io/concepts/what-is-ipfs/ What is IPFS? Learn about IPFS, the InterPlanetary File System, how it works, and why it's important to the future of the internet. docs.ipfs.io IPFS의 정의 : IPFS is a distributed system for storing and accessing files, websites, applications, and data. IPFS는 파일, 웹 사이트, 응용 프로그램 및 데이터를 저장하고 액세스하기 위한 분산 시스템이다. 기존 http 방식 : https://en.wikipedia.org/wik..

AWS, Docker/IPFS 2021.05.28

go-ipfs 시작하기 <2.private network>

1. ipfs swarm key 생성 (host 1 에서만 실행합니다) swarm key는 private network 를 구성할 peer들 사이에 공유되어야 하는 private key 를 의미합니다. 똑같은 swarm key를 가짐으로써 팀을 이루게 되는거죠! 그래서 한 개의 host만 이 swarm key를 생성하면 됩니다. #swarm-key-gen 다운로드 $ git clone https://github.com/Kubuxu/go-ipfs-swarm-key-gen.git $ cd go-ipfs-swarm-key-gen $ go build ipfs-swarm-key-gen/main.go #Swarm key 생성함 $ ./main > ~/.ipfs/swarm.key $ cat ~/.ipfs/swarm...

AWS, Docker/IPFS 2020.11.27

go-ipfs 시작하기 <1.go-ipfs 설치>

0. Go Install (Linux) Go 설치하기 전, 리눅스 업데이트 $ sudo apt-get update $ sudo apt-get -y upgrade Go zip파일 다운로드 $ wget https://dl.google.com/go/go1.11.4.linux-amd64.tar.gz $ sudo tar -xvf go1.11.4.linux-amd64.tar.gz $ sudo mv go /usr/local Go 경로 만들고, 환경변수 설정 $ mkdir $HOME/gopath $ sudo nano $HOME/.bashrc #.bashrc 파일 맨 끝에 추가한다. export GOROOT=/usr/loacl/go export GOPATH=$HOME/gopath export PATH=$PATH:$GOR..

AWS, Docker/IPFS 2020.06.28