Post

Windows

  1. When Port is used
    1. Check app PID
      • netstat -ano | findstr ":<port>"
      • netstat -ano | findstr ":8080"
    2. Find what’s the app
      • tasklist /fi "pid eq <pid>"
      • tasklist /fi "pid eq 22216"
    3. Kill process
      • taskkill /PID <pid> /F
      • taskkill /PID 22216 /F