写在前面:
Ethereum目前有两种节点,分别是go-ethereum(简称geth)和Parity。因为Parity出现的时间较晚,解决了geth节点中的许多问题,拥有更好的性能,所以后面所有关于以太坊的讲解都会以Parity环境作为基础。本篇主要说明了Parity节点的搭建
使用的系统:ubuntu 16.04
Parity官方网站:https://parity.io
Parity 安装
Parity节点可以被安装在本地或者服务器。有多种方式可以安装,包括编译、Docker、发布版安装文件,并且支持Windows/OS_X/Linux多个系统。关于编译安装和Docker安装,在Parity项目的README
(https://github.com/paritytech/parity-ethereum)文件中有详细说明。这里只说明最简单的安装方式。
1:首先安装 restup(https://rustup.rs/)
curl https://sh.rustup.rs -sSf | sh
2: 单行安装程序
安装稳定版:
bash <( curl https://get.parity.io -L ) -r stable
或安装最新版:
bash <( curl https://get.parity.io -L )
3:在终端输入parity --version确认安装成功,安装成功输出如下
Parity Ethereum
version Parity-Ethereum/v2.3.0-beta-10657d9-20190115/x86_64-linux-gnu/rustc1.31.1
Copyright 2015-2018 Parity Technologies (UK) Ltd.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
By Wood/Paronyan/Kotewicz/Drwięga/Volf
Habermeier/Czaban/Greeff/Gotchac/Redmann
提示:所有parity的相关操作,包括大量配置项,都通过parity这个命令来实现,可通过parity --help查看所有配置项
4:启动parity
最简单的启动方式直接命令行:parity
下一篇文章中,我将详细介绍启动配置