TCP🗄️ پایگاه داده🚨 High Risk
Elasticsearch
ES
📅 2010🏢 Elastic NVUNOFFICIAL
موتور جستجو و تحلیل داده
کاربردهای رایج:
- •جستجوی متن کامل
- •لاگ تحلیل (ELK Stack)
- •مانیتورینگ
شماره پورت
9200
💻 مثالهای کد
BASH
curl -X GET "localhost:9200/"
curl -X POST "localhost:9200/myindex/_doc/1" -H 'Content-Type: application/json' -d'
{
"user": "john",
"message": "Hello"
}'PYTHON
from elasticsearch import Elasticsearch
es = Elasticsearch(['http://localhost:9200'])
es.index(index='myindex', id=1, body={'user': 'john', 'message': 'Hello'})
res = es.search(index='myindex', body={'query': {'match_all': {}}})🔌شماره پورت
9200
📡پروتکل انتقال
TCP
🗄️دستهبندی
پایگاه داده