TCPRegistered PortFirewall: Usually Closed
8090

Alternative HTTP

What is Port 8090?

Port 8090 is used as an alternative HTTP port by various applications. Atlassian Confluence uses port 8090 as its default HTTP port. Some web application frameworks and development servers also use this port. In containerized environments, port 8090 is commonly mapped for additional web services. The port is part of the widely used 8080-8099 range for HTTP services and is frequently chosen when other ports in the range are occupied.

Common Uses

  • Atlassian Confluence web interface
  • Alternative web application port
  • Development server endpoint
  • Container-mapped web services

Technical Details

Port Number8090
ProtocolTCP
CategoryRegistered
Service NameAlternative HTTP
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 8090 (Alternative HTTP) from your terminal

Test connectivity

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

Open port in firewall

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

Security Considerations

!

Confluence on port 8090 should be placed behind a reverse proxy with TLS. Apply the same web application security practices as other HTTP ports. Keep Confluence and other applications updated for security patches.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports