TCPRegistered PortFirewall: Usually Closed
8983

Apache Solr

What is Port 8983?

Port 8983 is the default port for Apache Solr, an open-source enterprise search platform built on Apache Lucene. Solr provides distributed indexing, replication, load-balanced querying, and centralized configuration for search applications. It powers search functionality for many large websites and applications, including Netflix, Instagram, and eBay. Solr supports full-text search, faceted search, geospatial search, highlighting, and complex query parsing. SolrCloud mode enables distributed search across multiple nodes with automatic sharding and replication. The Solr Admin UI, accessible on port 8983, provides tools for managing cores, running queries, and monitoring performance.

Common Uses

  • Enterprise full-text search engine
  • E-commerce product search and faceting
  • Document indexing and retrieval
  • Log indexing and search analytics

Technical Details

Port Number8983
ProtocolTCP
CategoryRegistered
Service NameApache Solr
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 8983 (Apache Solr) from your terminal

Test connectivity

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

Open port in firewall

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

Security Considerations

!

Solr has had critical remote code execution vulnerabilities. Keep Solr updated and monitor security advisories. Enable authentication (Basic or Kerberos) in Solr 8+. Never expose the Solr admin interface to the internet. Use firewalls to restrict access to application servers only. Disable the Velocity template engine if not needed.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports