카테고리 없음

open ehtereum 메인넷구축

seongjin08 2021. 12. 10. 17:41

우분투 이미지 다운받기

docker pull ubuntu:20.04

 run 은 이미지 실행 -it 은 실행후 들어가겠다는거  --name 은 컨테이너 이름 그뒤에 실행시킬 이미지  다음 주소는 실행 후 bin/bash 

안에 들어가겠다는 얘기

docker run -it --name openethereum ubuntu:20.04 /bin/bash

 

업데이트 하는데 모두 yes 롤 하겠다는 얘기

apt-get update -y

 

github 에서 openethereum 을 검색 해서 

여기에 들어가서 어떤 식으로 됬는지 한번 흘터본다.

 

다시 터미널에서 

apt-get install -y  gcc g++ pkg-config file make cmake git clang libssl-dev curl yasm

시간설정하는게 나온다.

6.asia  69.seoul

 

 

rustup 언어를 깔기위해 

 curl https://sh.rustup.rs -sSf | sh

 

github 에서 다운받으라고 한 거 깔기

 

rustc --version

찾을수가 없다고 뜬다  환경 변수 설정을 해주어야 한다.

 

source $HOME/.cargo/env

 

 

git clone https://github.com/openethereum/openethereum.git

 

GitHub - openethereum/openethereum: The fast, light, and robust client for the Ethereum mainnet.

The fast, light, and robust client for the Ethereum mainnet. - GitHub - openethereum/openethereum: The fast, light, and robust client for the Ethereum mainnet.

github.com

 

cd openethereum

 

rustup 버젼 낮추기

rustup override set 1.51.0

 

cargo build --release --features final