require 'formula' class Elasticsearch < Formula url 'https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.18.3.tar.gz' homepage 'http://www.elasticsearch.org' md5 '56a56fe47402de2c8e19d14d5f53efa4' def cluster_name "elasticsearch_#{ENV['USER']}" end def install # Remove Windows files rm_f Dir["bin/*.bat"] # Move JARs from lib to libexec according to homebrew conventions libexec.install Dir['lib/*.jar'] (libexec+'sigar').install Dir['lib/sigar/*.jar'] # Install everything directly into folder prefix.install Dir['*'] # Set up ElasticSearch for local development: inreplace "#{prefix}/config/elasticsearch.yml" do |s| # 1. Give the cluster a unique name s.gsub! /#\s*cluster\.name\: elasticsearch/, "cluster.name: #{cluster_name}" # 2. Configure paths s.gsub! /#\s*path\.data\: [^\n]+/, "path.data: #{var}/elasticsearch/" s.gsub! /#\s*path\.logs\: [^\n]+/, "path.logs: #{var}/log/elasticsearch/" end inreplace "#{prefix}/bin/elasticsearch.in.sh" do |s| # Replace CLASSPATH paths to use libexec instead of lib s.gsub! /ES_HOME\/lib\//, "ES_HOME/libexec/" end inreplace "#{prefix}/bin/elasticsearch" do |s| # Set ES_HOME to prefix value s.gsub! /^ES_HOME=.*$/, "ES_HOME=#{prefix}" end # Write .plist file for `launchd` (prefix+'org.elasticsearch.plist').write startup_plist (prefix+'org.elasticsearch.plist').chmod 0644 end def caveats <<-EOS.undent If this is your first install, automatically load ElasticSearch on login with: mkdir -p ~/Library/LaunchAgents ln -nfs #{prefix}/org.elasticsearch.plist ~/Library/LaunchAgents/ launchctl load -wF ~/Library/LaunchAgents/org.elasticsearch.plist If this is an upgrade and you already have the org.elasticsearch.plist loaded: launchctl unload -w ~/Library/LaunchAgents/org.elasticsearch.plist ln -nfs #{prefix}/org.elasticsearch.plist ~/Library/LaunchAgents/ launchctl load -wF ~/Library/LaunchAgents/org.elasticsearch.plist To stop the ElasticSearch daemon: launchctl unload -wF ~/Library/LaunchAgents/org.elasticsearch.plist To start ElasticSearch manually: elasticsearch -f -D es.config=#{prefix}/config/elasticsearch.yml See the 'elasticsearch.yml' file for configuration options. You'll find the ElasticSearch log here: open #{var}/log/elasticsearch/#{cluster_name}.log The folder with cluster data is here: open #{var}/elasticsearch/#{cluster_name}/ You should see ElasticSearch running: open http://localhost:9200/ EOS end def startup_plist <<-PLIST.undent KeepAlive Label org.elasticsearch ProgramArguments #{bin}/elasticsearch -f -D es.config=#{prefix}/config/elasticsearch.yml RunAtLoad UserName #{ENV['USER']} WorkingDirectory #{var} StandardErrorPath /dev/null StandardOutPath /dev/null PLIST end end