1. Ports
  2. Port 2480

What This Port Does

Port 2480 has no official IANA assignment. On paper, it's an empty space in the registered port range (1024–49151) — available, unclaimed, waiting.

In practice, it belongs to OrientDB.

Since at least 2012, OrientDB has used port 2480 as its default HTTP endpoint. Every fresh installation opens this port. OrientDB Studio — the browser-based management interface — talks to the database through it. The REST API listens on it. Drivers and clients that prefer HTTP over OrientDB's binary protocol (which lives on port 2424) connect here.

The default configuration reserves a range: 2480–2490. If 2480 is taken, OrientDB tries 2481. Then 2482. It keeps going until it finds an open port.

What Is OrientDB?

OrientDB is a multi-model database — it handles documents, graphs, key-value pairs, and objects in a single engine. It was created by Luca Garulli and first released in 2010. The project aimed to combine the flexibility of document databases with the relationship-traversal power of graph databases, without the overhead of running two separate systems.

Over more than a decade, every version — 1.x through 3.x — shipped with 2480 as the HTTP default.

The Registered Port Range

The registered range (1024–49151) is where IANA formally coordinates port assignments for known services. Applications apply, IANA reviews, a port gets listed. The system keeps 48,127 ports organized and theoretically conflict-free.

Theoretically.

In practice, applications routinely use ports in this range without registering them. OrientDB is one of thousands of examples. The ports work fine — until two pieces of software on the same machine want the same number. Then someone has to reconfigure.

Security Note

An OrientDB instance exposed on port 2480 without authentication is a serious risk. The HTTP API provides full database access — read, write, schema changes. OrientDB's security guide warns explicitly about this: the default installation prioritizes ease of setup, not hardened security. If you're running OrientDB in any environment that touches a network, restrict this port.

# Check if OrientDB (or anything else) is listening on 2480
lsof -i :2480
ss -tlnp | grep 2480   # Linux
netstat -an | grep 2480

Why Unassigned Ports Matter

The unassigned spaces in the port registry aren't wasted — they're what makes the system flexible. New protocols get created. New software gets written. The registry can grow.

But "unassigned" doesn't mean "unused." It means IANA hasn't formally recognized a use. The gap between those two things is where most real-world software lives.

Adakah halaman ini membantu?

😔
🤨
😃
Port 2480: OrientDB Studio — The database that moved in without registering • Connected