我粗略地指的是这一点,用于在本地playgroung上部署我的业务网络。
https://hyperledger.github.io/composer/latest/business-network/bnd-deploy
我可以使用命令
安装.bna
文件
composer network install --card PeerAdmin@hlfv1 --archiveFile test-bank@0.0.1.bna
但我无法启动它。以下命令会抛出错误,说" archiveFile
"是一个未定义的论点。
composer network start --card PeerAdmin@hlfv1 --networkAdmin admin --networkAdminEnrollSecret adminpw --archiveFile test-bank@0.0.1.bna --file networkadmin.card --networkName test-bank --networkVersion 1.0.0
答案 0 :(得分:0)
您指的是旧的命令格式。新命令格式不同,没有archiveFile参数。请参阅此链接https://hyperledger.github.io/composer/latest/reference/composer.network.start。 新命令格式中的必填字段是您导入的网络名称,版本,管理员标识,密码和PeerAdmin卡。
答案 1 :(得分:0)
在最新版本中不推荐使用archiveFile参数。您使用的是哪个版本的作曲家?在composer 0.19.5中,以下命令可以正常工作
body{
font-family: "Times New Roman", Times, serif;
margin: 0px;
padding: 0px;
background: #434447;
}
#content
{
color: #eaeaea;
text-align: center;
}
#list{
display:flex;
}
#menu
{
padding: 10px;
float:left;
margin: 0px;
width: 15%;
}
#menu li
{
list-style: none;
width:10em;
display: block;
border-width:1px;
border-style:outset;
border colour: black;
padding: 3px 2px 3px 2px;
color: #545456;
background: #babbc1;
text-decoration: none;
text-align: center;
}
#menu a
{
color:#545456;
background: #babbc1;
text-decoration: none;
text-align:center;
display:block;
cursor:pointer;
}
#menu li:hover
{
border-style:inset;
}