基本参考文章:【hyperledger fabric 教程】1.ubuntu 安装fabric并运行起来 - 知乎
记录此过程中遇到的几个问题:
1、ping github.com 不通
解决:配置一下hosts:
sudo gedit /etc/hosts
可以在网站 https://www.ipaddress.com/搜索域名,然后得到github 的ip地址,在ubuntu中配置hosts后,需要重启网络,更新DNS,使用命令:sudo /etc/init.d/networking restart 报错 sudo: /etc/init.d/networking: command not found (由于不知报错原因,后通过重启虚拟机暴力重启网络)
2、FileZilla 从本机向虚拟机传输文件时,连接虚拟机root用户报错
解决:参考 filezilla root账户不能连接服务器的解决办法 - 简书
(1)ubuntu 默认是没有 root用户密码的,首次创建root用户密码
sudo passwd root
(2)修改配置文件,filezilla默认只能登录普通用户,如果想要root用户也能登录,需要修改/etc/ssh/sshd_config,将PermitRootLogin改为yes(若配置文件中没有 则直接添加PermitRootLogin yes),然后重启ssh
vim /etc/ssh/sshd_config
#PermitRootLogin prohibit-password
PermitRootLogin yes
然后重启ssh:
sudo service ssh restart
3、运行 sh ./bootstrap.sh 报错,./bootstrap.sh: 112: Syntax error: "(" unexpected (expecting "fi")
解决:参考Syntax error: "(" unexpected (expecting "fi") - 简书
Ubuntu 的 bash和dash的区别_Linux教程_Linux公社-Linux系统门户网站
这是因为 ubuntu默认的sh是dash,可以通过下面命令查看:
ls -l /bin/sh
查看后,如果是dash,则需要修改bash:
sudo dpkg-reconfigure dash
在命令执行后d出的界面选择“否”,则可以将默认的sh由dash改为bash,可以再次通过 ls -l /bin/sh查看是否修改成功。
4、运行./network.sh up 报错,Peer binary and configuration files not found..
解决:参考 2.0 部署Fabric测试网络_水上铁的专栏-CSDN博客
将 bin和config目录复制到fabric-samples下即可运行成功
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)