Last active
September 2, 2016 04:33
-
-
Save fartbagxp/1edd598c406a231f3d216d5cf9208215 to your computer and use it in GitHub Desktop.
Installation of Elasticsearch with Kibana on Windows using Docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Running elasticsearch on windows - docker | |
docker run -d -v "esdata":/usr/share/elasticsearch/data --name elasticsearch -p 9200:9200 -p 9300:9300 elasticsearch | |
Running Kibana and linking it to elasticsearch (Windows) | |
docker run --link elasticsearch:elasticsearch -p 5601:5601 -d kibana | |
Removing Docker containers | |
docker rm -f <container-name> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment