brew tap petere/postgresql
# search로 원하는 postgresql 버전을 찾을 수 있다.
brew search postgresql
brew install petere/postgresql/postgresql@10
Run this command to start postgres manually
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
psql postgres
사실 postgres 설치는 매우 간단하게 할 수 있지만, 이를 실행시키는 데서 잠깐 애를 먹었다.
ubuntu에서는 service 명령어로 postgres를 실행시키던걸 pg_ctl 명령어로 실행시켜주면 된다.
'backend > sql (postgres)' 카테고리의 다른 글
Postgres - how to dump sql from Amazon RDS to local postgres? (0) | 2018.01.01 |
---|---|
sql basic (codecademy 정리) (0) | 2017.12.08 |
ubuntu postgres systemctl restart 명령어 (0) | 2017.11.22 |
postgres 작동 안될 때 list-dependencies 확인하기 (0) | 2017.11.15 |
postgres basic usage-about Role (0) | 2017.10.22 |