I installed elasticsearch.90.7 with a deb file in ubuntu. I tried to uninstall elasticsearch.90.7 with this command:
sudo apt-get --purge autoremove elasticsearch
And then I downloaded elasticsearch-1.6.0.deb
to install elasticsearch 1.6.
When I run this command to install elasticsearch 1.6 by deb file:
dpkg -i elasticsearch-1.6.0.deb
It shows me this:
Selecting previously unselected package elasticsearch.
(Reading database ... 89826 files and directories currently installed.)
Preparing to unpack elasticsearch-1.6.0.deb ...
Creating elasticsearch group... OK
Creating elasticsearch user... OK
Unpacking elasticsearch (1.6.0) ...
Setting up elasticsearch (1.6.0) ...
Processing triggers for ureadahead (0.100.0-16) ...
When I start elasticsearch with service elasticsearch start
it's starting, but when i run this command: curl http://localhost:9200
It shows this error:
curl: (7) Failed to connect to localhost port 9200: Connection refused
I think elasticsearch is not installed properly. I want know what I should do to install elasticsearch properly.