问题
之前通过brew 安装elasticsearch-full.
安装命令
brew tap elastic/tap
brew install elastic/tap/kibana-full
但是在启动的时候报错:
Error: elasticsearch-full: Calling plist_options is disabled! Use service.require_root instead.
Please report this issue to the elastic/tap tap (not Homebrew/brew or Homebrew/homebrew-core), or even better, submit a PR to fix it:
/usr/local/Homebrew/Library/Taps/elastic/homebrew-tap/Formula/elasticsearch-full.rb:68
原因分析
因为brew 官方新版本已经关闭plist_options 方式。
https://github.com/Homebrew/homebrew-core/pull/121456
解决方法
修改 /usr/local/Homebrew/Library/Taps/elastic/homebrew-tap/Formula/elasticsearch-full.rb
- plist_options :manual => "elasticsearch"
-
- def plist
- <<~EOS
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
- <plist version="1.0">
- <dict>
- <key>KeepAlive</key>
- <false/>
- <key>Label</key>
- <string>#{plist_name}</string>
- <key>ProgramArguments</key>
- <array>
- <string>#{opt_bin}/elasticsearch</string>
- </array>
- <key>EnvironmentVariables</key>
- <dict>
- </dict>
- <key>RunAtLoad</key>
- <true/>
- <key>WorkingDirectory</key>
- <string>#{var}</string>
- <key>StandardErrorPath</key>
- <string>#{var}/log/elasticsearch.log</string>
- <key>StandardOutPath</key>
- <string>#{var}/log/elasticsearch.log</string>
- </dict>
- </plist>
- EOS
+ service do
+ run [opt_bin/"elasticsearch"]
+ working_dir var
+ log_path var/"log/elasticsearch/elasticsearch.log"
+ error_log_path var/"log/elasticsearch/elasticsearch.log"
end
或者完整替换rb文件。
class ElasticsearchFull < Formula
desc "Distributed search & analytics engine"
homepage "https://www.elastic.co/products/elasticsearch"
url "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.17.4-darwin-x86_64.tar.gz?tap=elastic/homebrew-tap"
version "7.17.4"
sha256 "6d2343171a0d384910312220aae3512f45e3d3d900557b736c139b8363a008e4"
conflicts_with "elasticsearch"
def cluster_name
"elasticsearch_#{ENV["USER"]}"
end
def install
# Install everything else into package directory
libexec.install "bin", "config", "jdk.app", "lib", "modules"
inreplace libexec/"bin/elasticsearch-env",
"if [ -z \"$ES_PATH_CONF\" ]; then ES_PATH_CONF=\"$ES_HOME\"/config; fi",
"if [ -z \"$ES_PATH_CONF\" ]; then ES_PATH_CONF=\"#{etc}/elasticsearch\"; fi"
# Set up Elasticsearch for local development:
inreplace "#{libexec}/config/elasticsearch.yml" do |s|
# 1. Give the cluster a unique name
s.gsub!(/#\s*cluster\.name\: .*/, "cluster.name: #{cluster_name}")
# 2. Configure paths
s.sub!(%r{#\s*path\.data: /path/to.+$}, "path.data: #{var}/lib/elasticsearch/")
s.sub!(%r{#\s*path\.logs: /path/to.+$}, "path.logs: #{var}/log/elasticsearch/")
end
inreplace "#{libexec}/config/jvm.options", %r{logs/gc.log}, "#{var}/log/elasticsearch/gc.log"
# Move config files into etc
(etc/"elasticsearch").install Dir[libexec/"config/*"]
(libexec/"config").rmtree
Dir.foreach(libexec/"bin") do |f|
next if f == "." || f == ".." || !File.extname(f).empty?
bin.install libexec/"bin"/f
end
bin.env_script_all_files(libexec/"bin", {})
system "codesign", "-f", "-s", "-", "#{libexec}/modules/x-pack-ml/platform/darwin-x86_64/controller.app", "--deep"
system "find", "#{libexec}/jdk.app/Contents/Home/bin", "-type", "f", "-exec", "codesign", "-f", "-s", "-", "{}", ";"
end
def post_install
# Make sure runtime directories exist
(var/"lib/elasticsearch/#{cluster_name}").mkpath
(var/"log/elasticsearch").mkpath
ln_s etc/"elasticsearch", libexec/"config"
(var/"elasticsearch/plugins").mkpath
ln_s var/"elasticsearch/plugins", libexec/"plugins"
end
def caveats
s = <<~EOS
Data: #{var}/lib/elasticsearch/#{cluster_name}/
Logs: #{var}/log/elasticsearch/#{cluster_name}.log
Plugins: #{var}/elasticsearch/plugins/
Config: #{etc}/elasticsearch/
EOS
s
end
service do
run [opt_bin/"elasticsearch"]
working_dir var
log_path var/"log/elasticsearch/elasticsearch.log"
error_log_path var/"log/elasticsearch/elasticsearch.log"
end
test do
require "socket"
server = TCPServer.new(0)
port = server.addr[1]
server.close
mkdir testpath/"config"
cp etc/"elasticsearch/jvm.options", testpath/"config"
cp etc/"elasticsearch/log4j2.properties", testpath/"config"
touch testpath/"config/elasticsearch.yml"
ENV["ES_PATH_CONF"] = testpath/"config"
system "#{bin}/elasticsearch-plugin", "list"
pid = testpath/"pid"
begin
system "#{bin}/elasticsearch", "-d", "-p", pid, "-Expack.security.enabled=false", "-Epath.data=#{testpath}/data", "-Epath.logs=#{testpath}/logs", "-Enode.name=test-cli", "-Ehttp.port=#{port}"
sleep 30
system "curl", "-XGET", "localhost:#{port}/"
output = shell_output("curl -s -XGET localhost:#{port}/_cat/nodes")
assert_match "test-cli", output
ensure
Process.kill(9, pid.read.to_i)
end
server = TCPServer.new(0)
port = server.addr[1]
server.close
rm testpath/"config/elasticsearch.yml"
(testpath/"config/elasticsearch.yml").write <<~EOS
path.data: #{testpath}/data
path.logs: #{testpath}/logs
node.name: test-es-path-conf
http.port: #{port}
EOS
pid = testpath/"pid"
begin
system "#{bin}/elasticsearch", "-d", "-p", pid, "-Expack.security.enabled=false"
sleep 30
system "curl", "-XGET", "localhost:#{port}/"
output = shell_output("curl -s -XGET localhost:#{port}/_cat/nodes")
assert_match "test-es-path-conf", output
ensure
Process.kill(9, pid.read.to_i)
end
end
end