Port 9200 — Elasticsearch
TCP registered
What runs on port 9200
The Elasticsearch HTTP API.
Security considerations
Unauthenticated Elasticsearch clusters have caused some of the largest data leaks on record. Enable security and bind privately.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :9200
sudo ss -lntp | grep :9200
# Windows
netstat -ano | findstr :9200
Get-NetTCPConnection -LocalPort 9200
# is it reachable from outside?
nc -zv example.com 9200
curl -v telnet://example.com:9200
Freeing the port
# find the process, then stop it
sudo lsof -ti :9200 | xargs kill # Linux / macOS
netstat -ano | findstr :9200 # note the PID, then:
taskkill /PID <pid> /F # Windows
Should this port be open to the internet?
No. Port 9200 should never be reachable from a public address. Bind it to localhost or a private network, and reach it through a VPN or bastion host if remote access is genuinely needed. Internet-wide scanners find newly exposed instances of this service within minutes.
Quick reference
| Port | 9200 |
| Protocol | TCP |
| Service | Elasticsearch |
| Range | Registered (1024–49151) — any user process may bind |
Frequently asked questions
What is port 9200 used for?
The Elasticsearch HTTP API.
Is it safe to open port 9200?
Unauthenticated Elasticsearch clusters have caused some of the largest data leaks on record. Enable security and bind privately.
How do I check if port 9200 is open?
Locally, sudo lsof -i :9200 on macOS or Linux, or netstat -ano | findstr :9200 on Windows. From outside, nc -zv host 9200 tells you whether anything answers.
Why do I get "address already in use" on port 9200?
Another process is bound to it — often a previous run of your own program that did not exit cleanly. Find it with lsof -ti :9200 and stop it, or configure your application to use a different port.
Can I change the port this service uses?
Almost always yes, in the service's configuration. Moving off a default port reduces automated scan noise, but it is obfuscation rather than security — a real attacker scans all 65,535.