I seeded all the projects, except for StoreFront, and when I tried to run the app by this: dotnet run --project src/YourBrand.AppHost/YourBrand.AppHost.csproj command, I get the error below
fail: Aspire.Hosting.Dcp.dcpctrl.ServiceReconciler[0]
could not start the proxy {"ServiceName": {"name":"portal"}, "Reconciliation": 45, "error": "could not start the proxy for the service: listen tcp [::1]:5010: bind: Only one usage of each socket address (protocol/network address/port) is normally permitted."}
fail: Aspire.Hosting.Dcp.dcpctrl.ServiceReconciler[0]
could not start the proxy {"ServiceName": {"name":"identityManagement"}, "Reconciliation": 47, "error": "could not start the proxy for the service: listen tcp [::1]:5040: bind: Only one usage of each socket address (protocol/network address/port) is normally permitted."}
fail: Aspire.Hosting.Dcp.dcpctrl.ServiceReconciler[0]
could not start the proxy {"ServiceName": {"name":"humanresources"}, "Reconciliation": 53, "error": "could not start the proxy for the service: listen tcp [::1]:5110: bind: Only one usage of each socket address (protocol/network address/port) is normally permitted."}
fail: Microsoft.Extensions.Hosting.Internal.Host[11]
Hosting failed to start
The error is longer, but I think this is the relevant part.
Do you have any idea on why this error is occurring?
I seeded all the projects, except for
StoreFront
, and when I tried to run the app by this:dotnet run --project src/YourBrand.AppHost/YourBrand.AppHost.csproj
command, I get the error belowThe error is longer, but I think this is the relevant part. Do you have any idea on why this error is occurring?