You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 2, 2024. It is now read-only.
As described in this Mongoose issue: depending on your operating system configuration, in node v17 and above, localhost can resolve to the IPv6 address ::1 instead of the usual IPv4 loopback address 127.0.0.1, which kept me from being able to connect to the MongoDB server on my local device when running this project, because MongoDB needs to be started from the command line with a special flag before it will support IPv6 connections. The IPv4/IPv6 issue could be disambiguated by changing the URI in projects/server/.env from localhost to 127.0.0.1.
The text was updated successfully, but these errors were encountered:
As described in this Mongoose issue: depending on your operating system configuration, in node v17 and above,
localhost
can resolve to the IPv6 address::1
instead of the usual IPv4 loopback address127.0.0.1
, which kept me from being able to connect to the MongoDB server on my local device when running this project, because MongoDB needs to be started from the command line with a special flag before it will support IPv6 connections. The IPv4/IPv6 issue could be disambiguated by changing the URI in projects/server/.env fromlocalhost
to127.0.0.1
.The text was updated successfully, but these errors were encountered: