About 503,000 results
Open links in new tab
  1. networking - Why is localhost IP 127.0.0.1? - Super User

    Aug 29, 2009 · I wondered what is the origin of the decision to make localhost's IP address 127.0.0.1. What is the "meaning" of 127? what is the "meaning" of 0.0.1?

  2. What is the 127.0.0.2 IP address for? - Super User

    127.0.0.0/8 - This block is assigned for use as the Internet host loopback address. A datagram sent by a higher-level protocol to an address anywhere within this block loops back inside the …

  3. What is the difference between 0.0.0.0, 127.0.0.1 and localhost?

    Dec 26, 2013 · The loopback adapter with IP address 127.0.0.1 from the perspective of the server process looks just like any other network adapter on the machine, so a server told to listen on …

  4. Can't connect to Flask web service, connection refused

    May 31, 2015 · 127.0.0.1 is the localhost address and will only be reachable from the raspi. In order to get access from your laptop open up the terminal on your raspi and try instead the ip …

  5. windows - Can't access 127.0.0.1 - Stack Overflow

    Dec 31, 2015 · I can't figure out when this started to happen, but the result is - 127.0.0.1 is not working on any port from anywhere (for example, browser says Unable to connect). Here are …

  6. Failed to connect to mysql at 127.0.0.1:3306 with user root access ...

    Apr 27, 2017 · First check if it's a workbench or connection problem. 1) In your windows run 'cmd' to open a terminal Try both 2a) mysql -u root -p -h 127.0.0.1 -P 3306 2b) mysql -u root -p -h > …

  7. What is the difference between 127.0.0.1 and non-localhost …

    Aug 18, 2022 · 127.0.0.1 is used for convenience and security. It's always present by default even if there is no network interface on the computer, and software can safely bind to it for …

  8. What's the difference between 127.0.0.1 and 0.0.0.0?

    Aug 2, 2015 · What is IP address 127.0.0.1? 127.0.0.1 is the loopback Internet protocol (IP) address also referred to as the “localhost.” The address is used to establish an IP connection …

  9. Understanding the difference between localhost:8080 and 127.0.0.1

    Nov 26, 2019 · But your problem is that when you used localhost, you specified port 8080, and when you used 127.0.0.1 you didn't specify a port, which would default to either 80 or 443 …

  10. How can I change "127.0.0.1:8000 / localhost:8000" to my desired …

    Jul 14, 2019 · The default is to listen on localhost (127.0.0.1), which means it can't be accessed from outside the machine. Using --host=0.0.0.0 would listen on all addresses for the local …