netstat --all --program | grep '3265'
--allshow listening and non-listening sockets.
--programshow the PID and name of the program to which socket belongs.
You could also use a port scanner such as Nmap.
netstat --all --program | grep '3265'
--all show listening and non-listening sockets.--program show the PID and name of the program to which socket belongs.You could also use a port scanner such as Nmap.