Skip to content

mkyong.com

  • Spring Boot
  • Java Virtual Threads
  • Contact
  1. Home /
  2. 8080

Tag: 8080

unix / linux January 24, 2016 1 min read by mkyong 5 comments

Linux – Which application is using port 8080

Always, Java developers need to know which application is using the high demand 8080 port. In this tutorial, we will show you two ways to find out which application is using port 8080 on Linux. 1. lsof + ps command 1.1 Bring up the terminal, type lsof -i :8080 $ lsof -i :8080 COMMAND PID […]

Read more Linux – Which application is using port 8080
mac logo
mac January 4, 2015 1 min read by mkyong 2 comments

Mac OSX – What program is using port 8080

By default, most Java web application servers are listening on port 8080, and it can easily cause the popular 8080 port conflict error. In Mac OSX, you can use sudo lsof -i :8080 | grep LISTEN to find out what program is listening on port 8080 : In terminal $ lsof -i :8080 | grep […]

Read more Mac OSX – What program is using port 8080

Java and Spring tutorials since 2008. Every example is a complete, runnable file, compiled and run on a real machine before it goes out.

About This Site

  • About
  • Editorial Policy
  • Contact
  • Code License
  • Privacy Policy
  • Terms of Use

© 2026 mkyong.com — Powered by WordPress

RSS