Port 6380 (TCP) is the standard for Redis over TLS. Redis 6+ supports TLS on a separate port (usually 6380) alongside plain 6379. Cloud hosters (AWS ElastiCache, Redis Cloud, Yandex) expose only the TLS port — plain 6379 is off.
Below: what uses this port, security considerations, online check, FAQ.
Free online tool — ping & port checker: instant results, no signup.
Redis over TLS
Redis 6+ supports TLS on a separate port (usually 6380) alongside plain 6379. Cloud hosters (AWS ElastiCache, Redis Cloud, Yandex) expose only the TLS port — plain 6379 is off.
Redis without TLS = all commands + AUTH password in plain text. TLS (port 6380) + requirepass mandatory for public-facing Redis.
Enterno.io Ping + Port checker tests TCP reachability of any port from 3 regions (Moscow / Frankfurt / Virginia).
Configuring Redis to use TLS on port 6380 involves several steps to ensure secure communications between clients and the Redis server. Below is a step-by-step guide:
openssl req -new -x509 -days 365 -nodes -out redis-server-cert.pem -keyout redis-server-key.pemredis.conf) to include the following parameters:tls-port 6380
tls-cert-file /path/to/redis-server-cert.pem
tls-key-file /path/to/redis-server-key.pem
tls-ca-cert-file /path/to/ca-cert.pem
redis-server /path/to/redis.confOnce configured, Redis will only accept secure connections on port 6380. It is recommended to disable the non-TLS port (6379) for added security.
Port 6380 is primarily used for secure connections to Redis servers, especially in cloud environments. Here are some common use cases:
By adopting port 6380 for Redis, businesses can enhance security while ensuring reliable data management across various applications.
To ensure that your Redis instance is correctly configured to accept TLS connections on port 6380, you can perform a series of tests using command-line tools. Here’s how you can test and diagnose the TLS connection:
openssl s_client -connect your-redis-server:6380 -tls1_2This command attempts to establish a secure connection to your Redis server. Look for the Verify return code: 0 (ok) message, which indicates that the TLS certificate is valid.
redis-cli -h your-redis-server -p 6380 --tlsOnce connected, you can run Redis commands securely. If you encounter any connection issues, make sure to check the following:
redis.conf file.By following these steps, you can effectively diagnose and validate your Redis TLS setup on port 6380.
No, modern cloud providers (AWS, Google Cloud, Yandex) close all incoming ports by default. You must explicitly allow port 6380 in a Security Group or firewall.
Use <a href="/en/ping">Enterno Ping + Port Checker</a>. Or in shell: <code>nc -vz example.com 6380</code>.
Depends on the service. Redis over TLS should never be exposed publicly without authentication + TLS. See <a href="/en/s/research-open-ports-exposure-2026">our 2026 exposure research</a>.
Free plan — 10 monitors, checks every 5 min, no card required. Upgrade for 1-minute interval and multi-region monitoring.