how to check which process running on port in linux code example
Example 1: find out process using port windows
netstat -ano | findstr 8080
Example 2: find out which procses is using port linux
sudo lsof -i:<port_number>
netstat -ano | findstr 8080
sudo lsof -i:<port_number>