9200

TCP

Elasticsearch

Elasticsearch Search Engine

⚠️ Security: DependsStatus: Active🔍 Category: Search

📋 Basic Information

Port Number
9200
Protocol
TCP
Service
Elasticsearch
Popularity
🔥 High
Description
Elasticsearch search and analytics engine HTTP API with real-time distributed search, log analysis, full-text search, RESTful API, and JSON-based
Tags
searchelasticsearchdatabaseanalytics

🔒 Security Information

💡

Security Notes

Configure authentication and TLS, do not expose publicly

🛠️ Installation

🐧Linux

# Ubuntu/Debian
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
echo "deb https://artifacts.elastic.co/packages/8.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-8.x.list
sudo apt update
sudo apt install elasticsearch -y
sudo systemctl start elasticsearch
sudo systemctl enable elasticsearch

🐳Docker

docker run -d --name elasticsearch -p 9200:9200 -e discovery.type=single-node elasticsearch:8.11.0

Check

curl http://localhost:9200

🔗 Related Ports