我正在尝试使用新的M1芯片(ARM)在苹果上设置ELK堆栈。安装logstash时,我收到以下错误:
/ % brew install logstash
Error: logstash: no bottle available!
You can try to install from source with:
brew install --build-from-source logstash
Please note building from source is unsupported. You will encounter build
failures with some formulae. If you experience any issues please create pull
requests instead of asking for help on Homebrew's GitHub, Twitter or any other
official channels.当我尝试安装elasticsearch时,我也收到了这条消息,但我在这里找到了一个解决方案:https://github.com/Homebrew/discussions/discussions/925#discussioncomment-943622
有没有类似的解决方案来安装logstash,或者其他有效的解决方案?
发布于 2021-11-20 10:14:04
不建议您安装来自homebrew-core存储库(默认软件包存储库)的弹性软件。Homebrew停止分发更新版本的elasticsearch和kibana,尽管你仍然可以在homebrew-core中获得过时的版本。
这是因为Homebrew遵循OSI的开源许可定义,而elastic软件使用的新许可与它不兼容。因此,elastic开始使用自己定制的tap分发这些软件。
# tap maintained by elastic organization
# https://github.com/elastic/homebrew-tap
brew tap elastic/tap
# install logstash
brew install elastic/tap/logstash-fullhttps://stackoverflow.com/questions/69857017
复制相似问题