check which app is using a specific port code example
Example 1: linux check what process is using port
$ netstat -ltnp | grep -w ':80'
Example 2: check which application is using port
In Windows CMD/Powershell:
netstat -aon | findstr '[port_number]'