설치 환경 :
Mac M3 PRO / ITerm2 / Homebrew
---------------
Mac에 Homebrew가 설치되어 있다고 가정 후 진행.
설치 되어있지 않다면 아래의 명령어로 설치.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# postgresql 16 설치
## 아래의 명령어로 postgresql 16 설치
brew install postgresql@16
## 환경 변수 추가
echo 'export PATH="/opt/homebrew/opt/postgresql@16/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
export LDFLAGS="-L/opt/homebrew/opt/postgresql@16/lib"
export CPPFLAGS="-I/opt/homebrew/opt/postgresql@16/include"
## 서비스 시작
brew services start postgresql@16
## 서비스 구동 확인
brew services status postgresql@16
## 설치된 postgresql 버전 확인
postgres --version
설치 끝!
# postgresql 접속
psql postgres
### postgresql 명령어 참고하기 좋은 블로그 소개
https://browndwarf.tistory.com/51
사용자 권한 설정과 스키마 설정에 대해서는 다음의 포스팅을 확인해주세요.
https://mangocoding-journal.tistory.com/43
참고 : https://kholo.dev/post/how-to-install-postgresql-on-mac
'DateBase > PostgreSQL' 카테고리의 다른 글
PostgreSQL 스키마와 유저 권한 설정 및 DBeaver를 통한 DB 연결 (0) | 2024.06.19 |
---|