Toolman

Port 2049 — NFS

TCP/UDP registered

What runs on port 2049

Network File System — Unix file sharing.

Security considerations

Traditional NFS trusts client-supplied user IDs. Use NFSv4 with Kerberos, or keep it on a trusted network.

Checking whether something is listening

# Linux / macOS — what is bound to the port
sudo lsof -i :2049
sudo ss -lntp | grep :2049

# Windows
netstat -ano | findstr :2049
Get-NetTCPConnection -LocalPort 2049

# is it reachable from outside?
nc -zv example.com 2049
curl -v telnet://example.com:2049

Freeing the port

# find the process, then stop it
sudo lsof -ti :2049 | xargs kill        # Linux / macOS
netstat -ano | findstr :2049            # note the PID, then:
taskkill /PID <pid> /F                    # Windows

Other common ports

All port numbers