Port 6379 β Redis In-Memory Key-Value Store
Port 6379 is the default port for Redis in-memory cache and message broker. The number 6379 corresponds to the letters "MERZ" on a telephone keypad (named after Italian singer Alessia Merz).
6379
TCP
redis-server
6379/tcp
Instant Terminal Fixes for Port 6379
redis-cli ping || sudo ss -tulpn | grep 6379sudo systemctl stop redis || sudo kill -9 $(sudo lsof -t -i:6379)sudo ufw deny 6379Get-NetTCPConnection -LocalPort 6379Stop-Process -Id (Get-NetTCPConnection -LocalPort 6379).OwningProcess -Forcedocker run -p 6379:6379 -d redis:alpine redis-server --requirepass securepassCommon Error Encountered
Could not connect to Redis at 127.0.0.1:6379: Connection refused
Security Advisory & Hardening
CRITICAL: Redis is designed to be accessed by trusted clients inside a secure private network. Publicly exposed Redis instances without passwords (`requirepass`) are regularly compromised by crypto-miners.
Port 6379 Questions & Answers
Common questions regarding default services, kill commands, and firewall configurations.
Port 6379 is commonly used for Redis In-Memory Key-Value Store. Port 6379 is the default port for Redis in-memory cache and message broker. The number 6379 corresponds to the letters "MERZ" on a telephone keypad (named after Italian singer Alessia Merz).