EOS节点搭建

EOS节点搭建

前言

github 地址:https://github.com/EOSIO/eos

安装包下载地址:https://github.com/EOSIO/eos/releases

文档地址:https://developers.eos.io/eosio-home/docs

下载与安装

源码安装

tar.gz 安装

下载并解压

tar -zxvf eosio-1.8.2.mojave.bottle.tar.gz

rpm 安装

安装包下载地址:https://github.com/EOSIO/eos/releases

sudo yum install ./eosio-1.8.2-1.el7.x86_64.rpm

启动 keosd

keosd &

启动 nodeos

nodeos -e -p eosio \
--plugin eosio::producer_plugin \
--plugin eosio::chain_api_plugin \
--plugin eosio::http_plugin \
--plugin eosio::history_plugin \
--plugin eosio::history_api_plugin \
--access-control-allow-origin='*' \
--contracts-console \
--http-validate-host=false \
--verbose-http-errors >> nodeos.log 2>&1 &

检测 nodeos 是否生成块

tail -f nodeos.log

检测钱包

cleos wallet list

检测 nodeos 端点

curl http://localhost:8888/v1/chain/get_info

rpm 卸载

sudo yum remove eosio

你可能感兴趣的:(BlockChain)