EOS Dapp开发(1)-基于Docker的开发环境搭建
随着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开发。
EOS Dapp开发(1)-基于Docker的开发环境搭建的更多相关文章
- Ubuntu 基于Docker的TensorFlow 环境搭建
基于Docker的TensorFlow 环境搭建 基于(ubuntu 16.04LTS/ubuntu 14.04LTS) 一.docker环境安装 1)更新.安装依赖包 sudo apt-get up ...
- 十大基于Docker的开发工具
http://www.infoq.com/cn/news/2014/08/top-10-open-source-docker FlynnFlynn是一个使用Go语言编写的开源PaaS平台,Flynn使 ...
- ArcGIS Pro开发Web3D应用(1)——环境搭建与初始实例
1.搭建环境 1.1 ArcGIS Web3D软件环境 ArcGIS Pro 2.0(必须) ArcGIS for Enterprise 10.5.1 (从10.5开始称呼为Enterprise)包括 ...
- [转]GeoServer地图开发解决方案(一):环境搭建篇
GeoServer 是 OpenGIS Web 服务器规范的 J2EE 实现的社区开源项目,利用 GeoServer 可以方便的发布地图数据,允许用户对特征数据进行更新.删除.插入操作,通过 GeoS ...
- 基于Python的Appium环境搭建合集
自动化一直是测试圈中的热聊,也是大家追求的技术方向.在测试中,往往回归测试也是测试人员的“痛点”.对于迭代慢.变更少的功能,就能用上自动化来替代人工回归,减轻工作量. 问题 在分享环境搭建之前,先抛出 ...
- 基于Docker在Win10平台搭建Ruby on Rails 6.0框架开发环境
原文转载自「刘悦的技术博客」https://v3u.cn/a_id_170 2020年,"非著名Web框架"–Ruby on Rails已经15岁了.在今年,Rails 6.0趋于 ...
- windows下用ADT进行android NDK开发的具体教程(从环境搭建、配置到编译全过程)
郑重申明:如需转载本博客,请注明出处,谢谢! 这几天在学习android NDK的开发.那么首先让我们来看看android NDK开发的本质是什么. NDK(Native Development Ki ...
- [终极巨坑]golang+vue开发日记【一】,环境搭建篇
写在前面 这个golang+vue大部分的内容是基于bydmm(橙卡)大佬的视频学来的,我在这里只是做一下个人开发的笔记,就是图一个乐,毕竟我只是个应届毕业生,如果真的要学请:bydmm的b站空间. ...
- 建立基于docker的编译环境
如果我们要在一台开发主机上搭一个编译环境,我们需要安装一堆依赖库和编译工具.如果我们有多个不同的项目同时进行,这些项目的编译工具和依赖库又都不一样,如果我们把这些东西全都塞到一台机器里,会不会有冲突呢 ...
随机推荐
- linux命令详解之netstat
今天在使用linux的时候,要查看端口号,但是不知道要使用哪一个命令所以就学习了一下,原来是使用netstat,接下来给大家一起来学习. 一.netstat介绍 1.1.简介 Netstat 命令用于 ...
- sqlldr导入数据(以PostgreSql>>>Oracle为例)
1.在目标数据库中创建表 1.1点击源表,复制创建语句 1.2 修改数据类型以匹配目标数据库,如: 字符串类型:character varying(20)>>>varchar2(20 ...
- iOS 数据压缩与解压
转自: http://blog.csdn.net/dkq972958298/article/details/53321804 在实际开发中,我们经常要对比较大的数据进行压缩后再上传服务器,下面是我在项 ...
- JavaScript 取对象的值时用点和中括号的区别
用点的时候 点后面是对象的真实属性名称, 用中括号的时候 中括号里面是变量或者字符串
- Error 2 error C2784: 'bool std::operator <(const std::_Tree<_Traits> &,const std::_Tree<_Traits> &)'
Error 2 error C2784: 'bool std::operator <(const std::_Tree<_Traits> &,const std::_Tree ...
- 关于JavaScript中的this
1.关于this的误会. 误会(1):this指向所在函数本身. 我们常常会对this产生各种误会,比如说我们可能认为this会指向所在函数本身,但实际上并非如此. function foo (){ ...
- C# Smtp方式发送邮件
//简单邮件传输协议类 System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient(); ...
- java.util.logging.Logger使用具体解释
java.util.logging.Logger不是什么新奇东西了,1.4就有了,但是由于log4j的存在,这个logger一直沉默着,事实上在一些測试性的代码中,jdk自带的logger比log4j ...
- List自定义排序
List自定义排序我习惯根据Collections.sort重载方法来实现,下面我只实现自己习惯方式.还有一种就是实现Comparable接口. 挺简单的,直接上代码吧. package com.so ...
- STM32学习之路之MDK安装篇