find what is running on port linux code example
Example 1: linux check what process is using port
$ netstat -ltnp | grep -w ':80'
Example 2: find out which procses is using port linux
sudo lsof -i:<port_number>
Example 3: process runninng on particular port
sudo ss -lptn 'sport = :80'