linux find service using port code example
Example 1: find out which procses is using port linux
sudo lsof -i:<port_number>
Example 2: find which service is using port
netstat -aon | findstr<port_number>
tasklist | findstr 9260
sudo lsof -i:<port_number>
netstat -aon | findstr<port_number>
tasklist | findstr 9260