show process by port linux code example
Example 1: linux check what process is using port
$ netstat -ltnp | grep -w ':80'
Example 2: bash list process on port
sudo lsof -i:3000
#Just change the port 3000
Example 3: linux which process is using a port
$ sudo netstat -ltnp | grep ':80'