6379
TCP
Redis
Redis In-Memory Data Store
⚠️ Security: DependsStatus: Active💾 Category: Cache
📋 Basic Information
- Port Number
- 6379
- Protocol
- TCP
- Service
- Redis
- Popularity
- 🔥 High
🔒 Security Information
💡
Security Notes
Do not expose externally, configure authentication (requirepass) and use TLS
🛠️ Installation
🐧Linux
# Ubuntu/Debian
sudo apt update
sudo apt install redis-server -y
sudo systemctl start redis
sudo systemctl enable redis🐳Docker
docker run -d --name redis -p 6379:6379 redis:latest🔌Connect
redis-cli -h localhost -p 6379