# WHATPORT(6379)

## NAME

port 6379 — Redis — Redis, registered with IANA and running with no password unless you set one.

Protocol: TCP  
IANA registry

## DESCRIPTION

Port 6379 is the registered Redis port and the default for every Redis and Redis-compatible server. Redis is designed for trusted networks: authentication is off unless you configure ACLs or requirepass. Since 3.2 it starts in protected mode, replying only to loopback when it binds all interfaces with no password set, but plenty of deployments disable that or bind explicitly and end up open.

## EXPOSURE

**Do not expose.** Redis's own docs say do not expose the port to the internet — one FLUSHALL wipes the dataset, and CONFIG-based file writes can lead to code execution.

## CHECK

```sh
redis-cli -h 127.0.0.1 -p 6379 PING
```

## SEE ALSO

- docs — [Redis — Security (protected mode, network security, ACLs)](https://redis.io/docs/latest/operate/oss_and_stack/management/security/) (redis.io)
- source — [redis/redis on GitHub](https://github.com/redis/redis) (github.com)
- iana — [IANA Service Name and Transport Protocol Port Number Registry — 6379 (redis)](https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml?search=6379) (iana.org)

---

HTML: <https://whatport.net/6379/> · JSON: <https://whatport.net/6379.json> · full dataset: <https://whatport.net/ports.json>
