About 50 results
Open links in new tab
  1. 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, Nicecast/Icecast, …

  2. 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 …

  3. 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 for the port …

  4. 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 listening on all IPv4 …

  5. How can I change "127.0.0.1:8000 / localhost:8000" to my desired url ...

    Jul 14, 2019 · I'm using laravel and I don't know how to customize the default url which is "127.0.0.1:8000" or "localhost:8000" to my desired url. My expectation is to change 127.0.0.1:8000 to …

  6. 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 firewalls or …

  7. django - http://127.0.0.1:8000/ This site can’t be reached127.0.0.1 ...

    Feb 9, 2024 · To share your Django project locally, you need to run it within your virtual environment using the following command: python manage.py runserver 0.0.0.0:8000 Then you will have to find …

  8. windows - Port 8000 locked by an application - Super User

    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 Service has been …

  9. Errno 13 error while attempting to bind on address ('127.0.0.1', 8000)

    Oct 11, 2024 · taskkill /f /pid 3680 This should get rid of the running process on port 8000 and allow you to run your fast api application.

  10. python - Cannot connect to fast api server at localhost:8000 from my ...

    Jul 1, 2021 · Cannot connect to fast api server at localhost:8000 from my application which is running under a docker container Asked 4 years, 7 months ago Modified 1 year, 8 months ago Viewed 38k …