markshust / docker-magento

Mark Shust's Docker Configuration for Magento
https://m.academy/courses/set-up-magento-2-development-environment-docker/
MIT License
2.59k stars 1.01k forks source link

Error DNS_PROBE_FINISHED_NXDOMAIN #1186

Open gaeldelmer opened 4 months ago

gaeldelmer commented 4 months ago

Description After what appeared to be a successful installation, I'm encountering a DNS error when navigating to magento.test. I have already added 127.0.0.1 magento2.test to C:\windows\system32\drivers\etc\hosts as specified in the WSL2 documentation https://github.com/markshust/docker-magento/discussions/372. Everything else seems to be functioning correctly, as I'm able to run setup upgrades and install sample data.

Steps To Reproduce

  1. Install on Windows 11 WSL with one line script
  2. Go to https://magento.test/ on Chrome or Edge

Expected Result Display of Magento website

Actual Result Display of DNS_PROBE_FINISHED_NXDOMAIN

prodigitalsschulze93 commented 4 months ago

got the same issue here. Is there a Solution for this ? I´ve also tried to do the step by step which causes the same error. I´ve done the exact same thing on my mac (one-liner and step by step) and it´s working. But we need that for our Windows Laptops to get work.

dvzanden commented 4 months ago

Same problem here, running from a windows laptop with WSL2.

aesamphp commented 3 months ago

same issue happend to me from a Windows laptop with WSL2 and Docker v4.31.0

MrBlaBlak commented 3 months ago

I had the same issue. Run these commands: sudo mkdir -p /etc/systemd/resolved.conf.d

echo -e "[Resolve]\nDNS=127.0.0.1\nDomains=~test\n" \ | sudo tee /etc/systemd/resolved.conf.d/warden.conf > /dev/null

sudo systemctl restart systemd-resolved and if you are supposed to open https://magento.test/ then you also should add 127.0.0.1 magento.test to C:\windows\system32\drivers\etc\hosts NOT magento2.test

Aquarvin commented 3 days ago

I have this issue too. Maybe it's somehow related to IPv6, but I don't know how to resolve it. I also noticed that /etc/hosts file is cleared after docker restarts.

ping magento.test
ping: magento.test: Name or service not known

after command bin/setup magento.test a new line 127.0.0.1 ::1 magento.test is added to the /etc/hosts file. But once you reboot the system and just start magento containers you found /etc/hosts is empty. Have to run command bin/setup magento.test, but I believe this command is not meant for it. But only after running it I am able too ping magento.test within wsl(ubuntu)

ping magento.test
PING ::1 (127.0.0.1) 56(84) bytes of data.
64 bytes from localhost (127.0.0.1): icmp_seq=1 ttl=64 time=0.020 ms
64 bytes from localhost (127.0.0.1): icmp_seq=2 ttl=64 time=0.050 ms
64 bytes from localhost (127.0.0.1): icmp_seq=3 ttl=64 time=0.026 ms
64 bytes from localhost (127.0.0.1): icmp_seq=4 ttl=64 time=0.038 ms