-
Hi, I've had trouble getting a bare-bones Aspire Starter App to run on MacOS 14.5 (Sonoma). When I try to run AppHost, it fails when it tries to assign the services to an address. I have tried disabling IPv6 on my Mac in case the issue was related, but even when I turn it off completely, it has the same result. The same happens if I run the ApiService. I can run the Web project, however. Below are the errors I am seeing: "Aspire.Hosting.Dcp.dcpctrl.ServiceReconciler: Error: could not start the proxy {"ServiceName": {"name":"webfrontend_https"}, "Reconciliation": 7, "error": "cound not start the proxy for the service: listen tcp [fe80::1]:7088: bind: can't assign requested address"} |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Beta Was this translation helpful? Give feedback.
-
@egrissom it looks like we're resolving fe80::1 instead of the more common ::1 address as Can you double check your hosts file to see what addresses you have bound to |
Beta Was this translation helpful? Give feedback.
@egrissom it looks like we're resolving fe80::1 instead of the more common ::1 address as
localhost
when trying to bind the service ports (but getting an error, because fe80::1 may not actually be associated with a network interface).Can you double check your hosts file to see what addresses you have bound to
localhost
?