About 2,320,000 results
Open links in new tab
  1. What is the difference in localhost:8000 and http://127.0.0.1:8000?

    Aug 29, 2020 · I am running a Django project with react redux (trying to implement authentication system) and the very weird thing i observed that my site is rendering properly when i use …

  2. python -m http.server gives "Serving HTTP on :: port 8000 (http ...

    Aug 11, 2022 · There's no functional difference for your use case, because localhost resolves to both IPv4 (127.0.0.1) and IPv6 (::1). However, technically: 0.0.0.0 means the server is …

  3. port - Why is the default localhost on many ... - Stack Overflow

    Jun 14, 2017 · The port 8000 is considered as a alternative http port. This port is commonly uses TCP port 8000 including: Winamp Audio Streaming, X-Lite, Icecast, DynamoDB Local, …

  4. Why is System listening on port 8000? - Super User

    Nov 22, 2011 · 0 In my case, port 8000 was taken over by drivers for Sound BlasterX AE-5 sound card. Process Creative.AudPosService located in C:\Program Files (x86)\Creative\Connection …

  5. django - Why can I connect to http://127.0.0.1:8000/ but not to …

    netstat -an | grep 8000 tcp4 0 0 127.0.0.1.8000 *.* LISTEN so what's going on here? Somehow port 22 is being treated differently than port 8000, but every place I can think to look for those …

  6. can somebody explain this command "php -S localhost:8000 -t …

    Jul 4, 2019 · The localhost:8000 part is of course the address which the server will use. The -t argument lets you specify a directory for the webroot. In this case the public directory will be …

  7. Docker Port 8000 bind address already in use after Docker update

    Aug 24, 2022 · It went well at the beginning but after update docker from version 4.08.xxxx to v 4.11.1 (84025) yesterday I'm running into problems today. These problems only started after …

  8. http - Port 8000 vs Port 8080 - Stack Overflow

    Jul 5, 2016 · Both port 8000 and 8080 are above the so-called well-known ports below 1024, and, as you noticed, both are common ports to use for web servers. Barring circumstances like …

  9. How to access docker container listening on 0.0.0.0:8000

    Mar 1, 2022 · Command docker container ls shows the application is running, and the service is listening on port 0.0.0.0:8000. What IP address should I use on the Windows host to access …

  10. What is localhost:8000 as used in Codecademy (for AngularJS and …

    Apr 12, 2015 · With localhost, it is possible to simulate a web-server environment and it is mostly used to simulate running web-applications as if they are running on a webserver. :8000 stands …