how to get process running on a port code example
Example 1: find out which procses is using port linux
sudo lsof -i:
Example 2: See process on port
netstat -ano | findstr 8080Code language: Bash (bash)
sudo lsof -i:
netstat -ano | findstr 8080Code language: Bash (bash)