IPFS系列 - 体验 IPFS Cluster Docker
Posted 搬砖魁首
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IPFS系列 - 体验 IPFS Cluster Docker相关的知识,希望对你有一定的参考价值。
evn
安装Docker和Docker Compose
下载 ipfs-cluster-ctl
ipfs-cluster-ctl 是IPFS群集守护程序的命令行客户端,我们将使用它来检查群集,添加和固定内容。
ipfs-cluster-ctl
从 dist.ipfs.io下载适用于您平台的最新版本并将其解压缩到您选择的文件夹中。
下载docker-compose.yml文件
下载docker-compose.yml并将其放置在相同的目录中ipfs-cluster-ctl。
启动集群
docker-compose up
等到所有容器都在运行。您可能会看到一些错误,因为在IPF准备就绪之前,群集对等点启动太快,但是它
们是无害的。
Play with the cluster
现在,您应该正在运行一个三节点IPFS群集!使用ipfs-cluster-ctl不同的终端(同一文件夹中)与它进行交互:
./ipfs-cluster-ctl peers ls # show information about the peers in the cluster
./ipfs-cluster-ctl add somefile # add a file to the cluster
./ipfs-cluster-ctl pin add /ipns/cluster.ipfs.io # pin the cluster website
./ipfs-cluster-ctl status <cid> # use the CID shown above to see the status in every peer
./ipfs-cluster-ctl pin ls <cid> # inspect the pin information
./ipfs-cluster-ctl health graph # 查看集群节点关系图
关闭集群
docker-compose kill
以上是关于IPFS系列 - 体验 IPFS Cluster Docker的主要内容,如果未能解决你的问题,请参考以下文章