About 2,810,000 results
Open links in new tab
  1. windows - What exactly is going on when I go to localhost:8080 in my ...

    Jul 1, 2015 · 1 In this scenario You send a request to resolve localhost which is 127.0.0.1 (loopback interface) and Apache is configured to listen on port 8080, when you access localhost on port 8080 it …

  2. What does localhost:8080 mean? [closed] - Stack Overflow

    8080 ( port ) is the address of the port on which the host server is listening for requests. http ://localhost/web Where localhost ( hostname ) is the machine name or IP address of the host server …

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

  4. Should I run my small website in port 80, 8080, or 81?

    Feb 24, 2014 · Does listening on an alternate port (81, 8080, etc.) actually reduce my risk of attacks or breaches? Or does the burden of maintaining it outweigh the benefits? In that case, should I be using …

  5. ¿Como puedo ver desde el cmd si el puerto 8080 esta abierto?

    Apr 13, 2018 · ¿Como puedo saber si el puerto 8080 esta abierto? Estoy utilizando un servidor con Windows

  6. Are there good alternative HTTP ports rather than port 80?

    There are actually 3 HTTP alternative ports: 591, 8008 and 8080. They are assigned by IANA as "HTTP Alternate", which makes them pretty much as official as it gets.

  7. GET http://localhost:8080/api net::ERR_CONNECTION_REFUSED

    Aug 30, 2023 · @Eric I have tried adding testserverip:8080. In my case it should be the same as adding localhost:8080 because both the frontend and backend are in localhost:8080.

  8. java - Why do we use port number localhost: 8080? Why don't we use …

    Apr 25, 2022 · When I use a Spring Boot app in local it uses, localhost:8080. When it is pushed to Pivotal Cloud Foundry, it has some route https://my-app.xyz-domain.com and we can access the …

  9. Is it safe to serve HTTP/HTTPS over ports 8080/8443 - web server

    Nov 9, 2015 · An easy solution is to leave your server running on port 8080/8443, and at the firewall, NAT/forward ports 80/443 to 8080/8443.

  10. Understanding the difference between localhost:8080 and 127.0.0.1

    Nov 26, 2019 · localhost is generally the address 127.0.0.1 but the :8080 part means to connect to port 8080 instead of the default port 80.