Port 6379 โ Redis
TCP ยท Port 6379/TCP is used for Redis, an in-memory data structure store that can be used as a database, message broker, or caching layer. This port is used for the TCP protocol, allowing clients to connect and interact with the Redis server. From a security perspective, securing this port is crucial to prevent unauthorized access to sensitive data.
- Port Number
- 6379
- Service Name
- Redis
- Protocol
- TCP
- Common Software
- redis-server
Security Notes
Redis has no auth by default. Always bind to localhost and enable requirepass.
FAQ
Port 6379 is used for Redis. Port 6379/TCP is used for Redis, an in-memory data structure store that can be used as a database, message broker, or caching layer. This port is used for the TCP protocol, allowing clients to connect and interact with the Redis server. From a security perspective, securing this port is crucial to prevent unauthorized access to sensitive data. Common software: redis-server.
Redis has no auth by default. Always bind to localhost and enable requirepass.
Use nmap: nmap -p 6379 <target> or check locally: ss -tlnp | rg 6379