Toolman

Port 11211 — Memcached

TCP/UDP registered

What runs on port 11211

Distributed memory cache.

Security considerations

The UDP interface was used for record-breaking amplification attacks in 2018. Disable UDP and bind to localhost.

Checking whether something is listening

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

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

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

Freeing the port

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

Other common ports

All port numbers