Ruby on Rails - installation and testing in ruby on rails- ruby on rails tutorial - rails guides - rails tutorial - ruby rails
installation and testing in ruby on rails
The first thing you want to do for local development is install ElasticSearch in your machine and test it to see if it is running. It requires Java to be installed. The installation is pretty straightforward:
- Mac OS X: brew install elasticsearch
- Ubuntu: sudo apt-get install elasticsearch
Then start it:
- Mac OS X: brew services start elasticsearch
- Ubuntu: sudo service elasticsearch start
For testing it, the easiest way is with curl. It might take a few seconds for it to start, so don't panic if you don't get any response at first.