TCPRegistered PortFirewall: Usually Closed
8444

Alternative HTTPS

What is Port 8444?

Port 8444 is used as an additional alternative HTTPS port when both 443 and 8443 are occupied. It's commonly found in environments running multiple HTTPS services. Some specific tools use it — Chia blockchain's daemon uses port 8444 for peer connections. Various application servers and custom deployments use this port for TLS-encrypted web interfaces. In Docker and container environments, port 8444 is mapped for additional secure web services.

Common Uses

  • Chia blockchain peer connections
  • Additional HTTPS service endpoint
  • Container HTTPS port mapping
  • Custom TLS web applications

Technical Details

Port Number8444
ProtocolTCP
CategoryRegistered
Service NameAlternative HTTPS
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 8444 (Alternative HTTPS) from your terminal

Test connectivity

Netcat (nc)Check if TCP port is reachable
nc -zv example.com 8444
curl (HTTP)Test HTTP response on this port
curl -v --max-time 5 http://example.com:8444/
TelnetBasic TCP port connectivity check
telnet example.com 8444
nmapScan port 8444 with service detection
nmap -p 8444 -sV example.com
Bash /dev/tcpPure bash TCP check (no extra tools needed)
(echo > /dev/tcp/example.com/8444) 2>/dev/null && echo "open" || echo "closed"

Open port in firewall

UFW (Ubuntu / Debian)
sudo ufw allow 8444/tcp
iptables
sudo iptables -A INPUT -p tcp --dport 8444 -j ACCEPT
firewalld (RHEL / CentOS)
sudo firewall-cmd --permanent --add-port=8444/tcp && sudo firewall-cmd --reload

Security Considerations

!

Standard HTTPS security applies. Use valid certificates and strong TLS configuration. Restrict access appropriately based on the service running.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports