This document lists the known issues that you may experience during operation of minifabric.
Error: chaincode install failed with status: 500 - failed to invoke backing implementation of 'InstallChaincode'
Mac with Intel Chip / MacOS Big Sur 11.3.1 / Docker 20.10.6
- Launch Docker Dashboard
- Open Preferences
- Click Experimental Features
- Disable Use gRPC FUSE for file sharing
- Apply / Restart
ServiceEndpoint Error: Failed to connect to remote gRPC server x.x.x.x:xxxx, url:grpcs://localhost:xxxx
Kubernetes / K8S
When connecting to the fabric network deployed in Kubernetes/K8S cluster using the minifabric generated connection profiles with Fabric SDK, make sure to double check that the GatewayOptions.discovery asLocalhost = false as shown below (otherwise if set to true, the SDK will be forced to use localhost when discovering peers/orders).
GatewayOptions = {
wallet,
identity: ca_admin,
discovery: { enabled: true, asLocalhost: false }
}