EOS Dapp开发(1)-基于Docker的开发环境搭建

时间:2022-07-27 15:37:12

随着EOS主网的上线,相信基于EOS的Dapp开发会越来越多,查阅了很多资料相关的开发资料都不是很多,只能自己摸索,按照网上仅有的几篇教程,先git clonehttps://github.com/EOSIO/eos –recursive,然后慢慢编译,然后就陷入了各种报错、各种奔溃的场景。为什么编译不报错的环境都是别人的!!!!。

没办法只能另想办法,突然想到Docker这个神一样的东西(之前的随笔里有一篇是redhat 7.2 内网安装docker),去Docker hub上搜EOS,果然有....https://hub.docker.com/r/eosio/,选取eosio/eos,然后开工,这个镜像不大,200多M,下载之后

 docker pull eosio/eos
docker images
docker.io/eosio/eos latest 01fdb2b0f454 hours ago MB

下载好了,启动镜像:

 docker run --name nodeos -v /home/docker/dockerdata/eosdata:/opt/eos/bin/data-dir -p 8888:8888 -p 9876:9876 -p10023:22 -t eosio/eos nodeosd.sh

 36039ms thread-   chain_plugin.cpp:          plugin_initialize    ] initializing chain plugin
36039ms thread- chain_plugin.cpp: plugin_initialize ] Starting up fresh blockchain with default genesis state.
CHAINBASE: Failed to pin chainbase shared memory (of size 8192 MB) in RAM. Performance degradation is possible.
6 CHAINBASE: Failed to pin chainbase shared memory (of size 340 MB) in RAM. Performance degradation is possible.
36065ms thread- http_plugin.cpp: plugin_initialize ] configured http to listen on 0.0.0.0:
36065ms thread- net_plugin.cpp: plugin_initialize ] Initialize net plugin
36065ms thread- net_plugin.cpp: plugin_initialize ] host: 0.0.0.0 port:
36065ms thread- net_plugin.cpp: plugin_initialize ] my node_id is cd8092582bcd89ffe102968f67e058cefa284d43977d28fee1fac2200b78c8de
36066ms thread- main.cpp: main ] nodeos version 012dc012
36066ms thread- main.cpp: main ] eosio root is /root/.local/share
36066ms thread- controller.cpp: startup ] No head block in fork db, perhaps we need to replay
36066ms thread- controller.cpp: initialize_fork_db ] Initializing new blockchain with genesis state
36101ms thread- chain_plugin.cpp: plugin_startup ] starting chain in read/write mode
36101ms thread- chain_plugin.cpp: plugin_startup ] Blockchain started; head block is #, genesis timestamp is --01T12::00.000
36101ms thread- http_plugin.cpp: plugin_startup ] start listening for http requests
36101ms thread- chain_api_plugin.cpp: plugin_startup ] starting chain_api_plugin
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/abi_bin_to_json
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/abi_json_to_bin
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/get_abi
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/get_account
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/get_block
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/get_block_header_state
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/get_code
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/get_currency_balance
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/get_currency_stats
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/get_info
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/get_producers
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/get_required_keys
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/get_table_rows
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/push_block
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/push_transaction
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/chain/push_transactions
36101ms thread- history_api_plugin.cpp: plugin_startup ] starting history_api_plugin
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/history/get_actions
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/history/get_controlled_accounts
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/history/get_key_accounts
36101ms thread- http_plugin.cpp: add_handler ] add api url: /v1/history/get_transaction
36102ms thread- net_plugin.cpp: plugin_startup ] starting listener, max clients is
36102ms thread- producer_plugin.cpp: plugin_startup ] producer plugin: plugin_startup() begin
36102ms thread- producer_plugin.cpp: plugin_startup ] Launching block production for producers at --13T11::36.102.
36102ms thread- producer_plugin.cpp: plugin_startup ] producer plugin: plugin_startup() end

有两个Failed,我测试下来暂时未发现有什么影响,暂且跳过不管(网上也有人说至少需要8G,这个后续有问题我会再更新处理)。有人反馈界面会卡在这里,其实Ctrl + C退出也没关系,容器还是会一直运行。

docker exec -it nodeos /bin/bash 进入容器,

ps:通过上述方式进入容器不是很方便,这里提供一种方式给容器安装ssh服务(虽然不推荐这么做,为了省事还是....)

#进入容器后执行如下代码

#对于不能上网的需要设置代理的需要将代理两行放开
#proxy=192.168.1.100: &&\
#export http_proxy=http://${proxy} &&\
echo 'root:root' |chpasswd &&\
apt-get update &&\
apt-get -y install openssh-server &&\
sed -ri 's/^#PermitRootLogin\s+.*/PermitRootLogin yes/' /etc/ssh/sshd_config && \
sed -ri 's/UsePAM yes/#UsePAM yes/g' /etc/ssh/sshd_config && \
/etc/init.d/ssh start

进入 /opt/eosio/bin,EOS相关的命令都在这里

cd /opt/eosio/bin
ls -rtl
total
-rwxr-xr-x. root root Jun : nodeosd.sh
-rwxr-xr-x. root root Jun : eosio-s2wasm
-rwxr-xr-x. root root Jun : eosio-wast2wasm
-rwxr-xr-x. root root Jun : eosio-launcher
-rwxr-xr-x. root root Jun : keosd
-rwxr-xr-x. root root Jun : eosio-abigen
-rwxr-xr-x. root root Jun : nodeos
-rwxr-xr-x. root root Jun : cleos
drwxr-xr-x. root root Jun : data-dir

核心关注的命令是cleos、nodeos、keosd。

cleos:命令行程序,通过命令行执行相应命令,如钱包、转账等操作

 Options:
-h,--help Print this help message and exit
-u,--url TEXT=http://localhost:8888/
the http/https URL where nodeos is running
--wallet-url TEXT=http://localhost:8900/
the http/https URL where keosd is running
-r,--header pass specific HTTP header; repeat this option to pass multiple headers
-n,--no-verify don't verify peer certificate when using HTTPS
-v,--verbose output verbose actions on error
--print-request print HTTP request to STDERR
--print-response print HTTP response to STDERR Subcommands:
version Retrieve version information
create Create various items, on and off the blockchain
get Retrieve various items and information from the blockchain
set Set or update blockchain state
transfer Transfer EOS from account to account
net Interact with local p2p network connections
wallet Interact with local wallet
sign Sign a transaction
push Push arbitrary transactions to the blockchain
multisig Multisig contract commands
system Send eosio.system contract action to the blockchain.

nodes:是一个挖矿的客户端,启动之后会开始挖矿,容器启动命令里nodeosd.sh,就是启动了一个nodes。

keosd:主要和钱包相关。

至此基于Docker的Eos环境搭建完毕,下一篇将开始EOS Dapp开发。