Homebrew의 현재 Postgres 버전은 다음과 함께 설치된 경우 10입니다.
brew install postgres
이전 버전의 postgres를 어떻게 설치합니까? 구체적으로 9.6
답변
다음을 사용하여 설치할 수있는 버전을 찾을 수 있습니다 brew search
.
$ brew search postgresql
==> Searching local taps...
postgresql postgresql@9.4 postgresql@9.5 postgresql@9.6
이러한 이전 버전 중 하나를 설치하려면 전체 이름을 brew install
다음 으로 전달하십시오 .
$ brew install postgresql@9.6
특정 버전의 PATH를 bash 환경에 추가하는 방법에 대한 지침을 제공하므로 psql
등을 사용할 수 있습니다 .
psql
최신 버전의 postgresql 을 계속 부팅하는 경우 다음을 시도하십시오.
brew install postgres@9.6
cp -rf /usr/local/Cellar/postgresql@9.6/9.6.9 /usr/local/Cellar/postgresql/.
brew switch postgres 9.6.9