6379
Redis
Redis key-value store
TCP
Database
Port Information
Port Number
6379
Protocol
TCP
Category
Database
Common Usage
URL with Port
http://localhost:6379 https://example.com:6379
Node.js/Express Server
const express = require('express');
const app = express();
const PORT = 6379;
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});Docker Port Mapping
docker run -p 6379:6379 myapp # In docker-compose.yml ports: - "6379:6379"
Firewall Configuration
# Linux/Ubuntu firewall sudo ufw allow 6379/tcp # Check if port is in use netstat -an | grep 6379
Port 6379 - Redis
Redis key-value store This is a TCP port commonly used in database applications. Port numbers range from 0-65535, with ports 0-1023 being well-known system ports, 1024-49151 being registered ports, and 49152-65535 being dynamic/private ports.