Postgre SQL 설치

Homebrew

PostgreSQL 설치

homebrew 최신버전 업데이트

brew update
brew doctor

postgresql 설치

brew search postgresql
brew install postgresql
  • 업데이트 해야하는 경우 제거하고 재설치한다. 이때 설치된 psql과 폴더를 제거한다.

    • rm -rf할 패키지 위치가 검색할 때마다 다른데, 경험상 내 컴에서는 저기 폴더를 삭제해줘야 됐다.

    • 아무튼 아래 명령어 이후에 다시 재설치 해주면 된다.

brew uninstall postgresql
rm -rf /opt/homebrew/var/postgresql@14
  • 잘 설치되어있는지 버전을 확인해보자.

postgres -V
  • 이후 postgres 유저로 접속한 다음, 비밀번호를 설정해준다.

sudo -u postgres psql
\password postgres

ALTER USER postgres PASSWORD '새비밀번호';

sudo -u postgres psql -c "ALTER USER postgres PASSWORD '새비밀번호';"

pgAdmin 4 설치

brew install --cask pgadmin4

https://formulae.brew.sh/cask/pgadmin4

Last updated