PROGRAMMING/DataBase

[postgresql/mac] postgresql 설치

seulda 2022. 1. 30. 17:00
728x90

[postgresql/mac] postgresql 설치 for mac m1

 

1. 터미널 접속 후 설치 명령어 입력

brew install postgresql

명령어 입력 시 설치 쭉쭉 진행됨

 

2. 설치 로그에 있는 postgresql 실행 명령어 입력

brew services start postgresql
# 또는 brew services restart postgresql

명령어 입력 시 착착 진행됨

 

3. 설치가 완료되었으니 명령어 입력하여 버전 확인

postgres -V

설치된 postgresql의 버전이 출력됨

 

4. postgresql 실행

psql postgres

postgres로 접속됨을 확인할 수 있음.  접속을 종료하고 싶다면 exit 입력.

 

 

 

이 후 계정, 데이터베이스 등을 생성하여 사용하면 된다!

terminal 환경에서 사용해도 되고, Client tool을 사용해도 무관~

 

 

728x90