Hello,
I started with Elastic Search couple of hours back and now I'm stuck while creating a sample document as per the startup guidelines:
https://www.elastic.co/guide/en/elasticsearch/guide/current/_indexing_employee_documents.html
Trying to create the employee document, using Kibana console:
PUT /megacorp/employee/1
{
"first_name": "John",
"last_name": "Smith",
"age": 25,
"about": "I love to go rock climbing",
"interests": [
"sports",
"music"
]
}
...but it's throwing a message like,
No handler found for uri [/?pretty/megacorp/employee/1] and method [PUT]
...and I've no clue on it.
I tried much, but couldn't find a solution, desperately need help!