Installed elasticsearch using homebrew and cannot locate the config files
elasticsearch, homebrew, path, ruby-on-rails, ruby-on-rails-3
Solution
While @karmi's answer gets you most of the way there, you'll actually need to look at the .plist that is linked when you install via homebrew and follow the (LaunchAgent instructions)
more ~/Library/LaunchAgents/homebrew.mxcl.elasticsearch.plist
Will produce some output that includes the important line:
es.config=/usr/local/Cellar/elasticsearch/0.20.5/config/elasticsearch.yml
Hope this helps.
Problem
I installed elasticsearch using homebrew and I want to make some configurations to it but I can't find the folder it was installed to. I'm looking for the configuration files as state here. Using rails 3.1.1 Thanks!