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
Copy-paste commands to check port 8983 (Apache Solr) from your terminal
Test connectivity
nc -zv example.com 8983
curl -v --max-time 5 http://example.com:8983/
telnet example.com 8983
nmap -p 8983 -sV example.com
(echo > /dev/tcp/example.com/8983) 2>/dev/null && echo "open" || echo "closed"
Open port in firewall
sudo ufw allow 8983/tcp
sudo iptables -A INPUT -p tcp --dport 8983 -j ACCEPT
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