尝试启动测试网络时出错

发布于 2025-01-10 14:39:45 字数 292 浏览 0 评论 0原文

我尝试按照教程在 MacOS 上进行开发,当我想运行下一个命令来启动网络./network.sh up<​​/code>时,错误图片,但我的环境变量已设置并且具有二进制文件和加密文件夹。在此处输入图片描述,我不知道如何解决这个问题,请帮忙!

I trying to follow tutorials and develope on MacOS ,When I want to run the next command to bring up the network./network.sh up,the error picture,but my env variable is set and have binaries and crypto folders.enter image description here,I don't know how to solve this problem, please help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多像笑话 2025-01-17 14:39:45

当未找到对等二进制文件和配置文件时,这意味着您需要设置路径来定位 Hyperledger bin 文件夹,并将 Fabric 配置环境变量指向该 config 文件夹。

我倾向于将 bin 和配置保持在 Hyperledger 网络代码的上一级,并按以下方式开始环境变量

export FABRIC_CFG_PATH=$PWD/../config/
export PATH=${PWD}/../bin:$PATH
export IMAGE_TAG="latest"
export COMPOSE_PROJECT_NAME="net"
export CC_PACKAGE_VERSION=1
export CC_PACKAGE_SEQUENCE=1

When peer binaries and config files are not found, it means that you need to set the path to locate the Hyperledger bin folder and point a fabric config environment variable to the config folder.

I tend to keep the bin and config up one level from the Hyperledger network code and have environment variables start off as the following

export FABRIC_CFG_PATH=$PWD/../config/
export PATH=${PWD}/../bin:$PATH
export IMAGE_TAG="latest"
export COMPOSE_PROJECT_NAME="net"
export CC_PACKAGE_VERSION=1
export CC_PACKAGE_SEQUENCE=1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文