Fabric 之 Ubuntu 环境安装

Posted 区块链部落

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Fabric 之 Ubuntu 环境安装相关的知识,希望对你有一定的参考价值。

孔壹学院:国内区块链职业教育引领品牌

孔壹学院创办于2016年12月09日,专注于区块链产品底层研发和职业教育培训,致力于打造国内一流的集线上教育线下周末班脱产班企业内训区块链产品外包区块链创新社区(技术/企业招聘) 和 高校区块链专业共建为一体的的综合性区块链商学院。

安装 curl

sudo apt install curl

Docker and Docker Compose

安装仓库

  • Update the apt package index

$ sudo apt-get update
  • Install packages to allow apt to use a repository over HTTPS:

$ sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    software-properties-common
  • Add Docker’s official GPG key:

$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
  • Use the following command to set up the stable repository.

sudo add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"

安装 DOCKER CE

  • Update the apt package index.

$ sudo apt-get update
  • Install the latest version of Docker CE

$ sudo apt-get install docker-ce
  • install docker-ce=17.09.0~ce-0~ubuntu

$ sudo apt-get install docker-ce=17.09.0~ce-0~ubuntu
  • run hello-world

$ sudo docker run hello-world

docker-compose

sudo apt install docker-compose

安装 go

解压下载的 go1.9.2.linux-amd64.tar.gz

sudo tar -xzf go1.9.2.linux-amd64.tar.gz -C /usr/local

配置全局变量

$ sudo gedit ~/.bashrc

添加如下代码

export GOPATH=/usr/local/go
export PATH=$GOPATH/bin:$PATH

重启配置文件

source ~/.bashrc

安装 node

curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs

检测 node 版本

nodejs -v

ubuntu 切换root用户

初次使用Unbutu发现无法切换到Root权限状态,可以按如下到步骤做:

先设置root到密码:sudo passwd root ;
在控制台直接输入:su root ,并输入密码;
就可以获得root权限了。

孔壹学院

国内区块链职业教育引领品牌


 技术交流 :微信(liyc1215)

 商务合作 :微信(ershiyidianjian)




戳原文,更有料!

以上是关于Fabric 之 Ubuntu 环境安装的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu环境下搭建hyperledger fabric超级无敌详细教程

ubuntu16.04下Hyperledger之搭建Fabric环境简单操作(五步启动e2e_cli)

Ubuntu18.04安装Fabric

Fabric 1.0 ubuntu1704安装过程

Hyperledger Fabric 1.1安装部署-基础环境搭建

Ubuntu18.04 下搭建Hyperledger Fabric v1.0环境