Skip to content

Instantly share code, notes, and snippets.

@robertlyson
Last active November 13, 2018 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robertlyson/a358c82c1a58743725a92dc229646b3c to your computer and use it in GitHub Desktop.
Save robertlyson/a358c82c1a58743725a92dc229646b3c to your computer and use it in GitHub Desktop.
elasticsearch and NEST requirements

Requirements

elasticsearch & kibana

You can use "I'll install it by myself" way or docker compose, whatever works for you better. Docker compose script is here, manual installation steps are listed below. Please make sure to follow other steps.

java 1.8.x

http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

elasticsearch 6.2.4

download https://www.elastic.co/downloads/past-releases/elasticsearch-6-2-4 follow installation steps https://www.elastic.co/downloads/elasticsearch

After you downloaded and run elasticsearch(ES) instance, http://localhost:9200 in your browser should return

{
  "name" : "awTmG2s",
  "cluster_name" : "elasticsearch",
  "cluster_uuid" : "5FygmZx4TuqvPJP0io_fNw",
  "version" : {
    "number" : "6.2.4",
    "build_hash" : "ccec39f",
    "build_date" : "2018-04-12T20:37:28.497551Z",
    "build_snapshot" : false,
    "lucene_version" : "7.2.1",
    "minimum_wire_compatibility_version" : "5.6.0",
    "minimum_index_compatibility_version" : "5.0.0"
  },
  "tagline" : "You Know, for Search"
}

kibana 6.2.4

download https://www.elastic.co/downloads/past-releases/kibana-6-2-4 and also, follow instalation steps :) https://www.elastic.co/downloads/kibana

Maku sure all is good by going to http://localhost:5601 in your fav. browser. You should see something like

capture

dotnet core 2.0+

https://www.microsoft.com/net/download/windows

Run dotnet --version, will print

Rob@DESKTOP-CFOA2QH C:\somedirectory
$ dotnet --version
2.1.100

or something very similar.

IDE

We will also need some kind of IDE installed on your machine so you can follow exercises. Here we have at least three options:

  • Visual Studio 2017 Community
  • Visual Studio Code
  • Notepad++ .. you know, we just need to have some kind of editor tool, build and running tests can be done in terminal/cmd

git

And git, so we can clone repository and do some exercises

Don't give up

I understand there is a lot of things to install and all this configuration .. crazy! If something is not working and you are worry .. don't give up! We will have some time before actual workshops, we will help with that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment