cars10 / elasticvue

Elasticsearch gui for the browser
https://elasticvue.com
MIT License
1.83k stars 147 forks source link

[FEAT]Support connection by SSH #256

Closed DominikBiggerPicture closed 2 months ago

DominikBiggerPicture commented 2 months ago

Description It would be nice could connect by SSH to external server.

cars10 commented 2 months ago

You can do that with a single command, simply forward the port, e.g.

ssh -L 1337:localhost:9200 user@server

This will map port 9200 on server to port 1337 on your local machine. Connect to localhost:9200 in elasticvue to access your cluster.