Centos 7 - EOS 설치
역시 이또한 자료가 많지않아 직접 설치했던 기록들을 남긴다
길라잡이 아니고 참고 자료로 이용되길 바라며
EOS.IO - centos 7 설치
1. 설치환경
Mem: 15G
OS: CentOS Linux 7 (Core)
Kernel: Kernel: Linux 3.10.0-862.14.4.el7.x86_64
2. 소스내려받기
1 | git clone https://github.com/EOSIO/eos --recursive |
빌드확인
Ubuntu 와 동일하다
1 | export PATH=${HOME}/opt/mongodb/bin:$PATH |
테스트도 시간은 10여분 정도 소요되는데 왜 오류가 자꾸 나는지는 검토중이다
그리고 중요부분
Ubuntu에서 삽질했던부분이다
~/eos/build
디렉터리에서 sudo make install
을 실행해서 설치하면
실행 파일이 v1.1.0 부터는 /usr/local/eosio/bin
에 설치된다
따라서,
1 | sudo update-alternatives --install /usr/local/bin/nodeos nodeos /usr/local/eosio/bin/nodeos 1 |
와 같이 해줘야 PATH 설정 없이도 편리하게 사용할 수 있다
EOS.IO - nodeos 실행
1 | nodeos -e -p eosio --plugin eosio::chain_api_plugin --plugin eosio::history_api_plugin |
블록생성이 확인된다
EOS.IO - cleos 확인
cleos get info
명령어를 통해 아래와 같이 확인한다