elasticsearch 홈페이지에서 macOS용 brew install로 설치를 하려던 중 오류가 발생했다.
brew tap elastic/tap
Shell
복사
brew install elastic/tap/elasticsearch-full
Shell
복사
tap 까지는 잘 됐는데, install elasticsearch-full하는 과정에서 다음과 같은 오류가 발생했다.
Warning: Calling plist_options is deprecated! 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:
/opt/homebrew/Library/Taps/elastic/homebrew-tap/Formula/elasticsearch-full.rb:68
Shell
복사
plist_options를 사용할 수 없고 대신 service.require_root를 사용하라는 오류같은데, 아래의 경로로 들어가서 파일을 까고 plist_options 부분을 수정했다. 수정 코드는 다음의 링크를 참고했다.