1. Ports
  2. Port 2138

Port 2138 sits in the registered ports range (1024–49151) and carries an IANA assignment: unbind-cluster, attributed to one Francois Harvey.1

That is everything that is publicly known about it.

No RFC describes the protocol. No open-source project implements it. No documentation explains what "unbind-cluster" does, what problem it was meant to solve, or what system it belongs to. Port databases repeat the IANA entry and add nothing.2 The name suggests something to do with cluster management — nodes leaving a cluster, perhaps, or releasing a binding — but that is speculation, not documentation.

What "Registered" Actually Means

The registered port range exists so that applications can claim a port number without fighting over it at runtime. You submit a request to IANA, they add your service name to the registry, and your port is reserved. In theory.

In practice, registration requires no working implementation. No RFC. No public specification. Anyone can register a port number and never ship a single line of code that uses it. Port 2138 may be one of those cases — registered in anticipation of a product that never materialized, or for internal use in a system that was never made public.

This is more common than it sounds. The registered port range contains thousands of entries for services that exist only as names in a database.

If You See Port 2138 Active

If something is actually listening on port 2138 on your system, it is not the IANA-registered "unbind-cluster" service in any meaningful sense. It is whatever application your system is running that happened to choose this port.

To find out what it is:

On Linux or macOS:

sudo ss -tlnp | grep 2138
# or
sudo lsof -i :2138

On Windows:

netstat -ano | findstr :2138

The output will show the process ID. From there:

Linux/macOS:

ps aux | grep <PID>

Windows (Task Manager or):

tasklist | findstr <PID>

The process name will tell you what is actually using the port — and it will not be called "unbind-cluster."

Frequently Asked Questions

Czy ta strona była pomocna?

😔
🤨
😃