[PostgreSQL] 설치 및 설정하기

2147 단어 PostgreSQLPostgreSQL

MacOS 기준으로 설명

설치

$ brew install postgresql

시작

$ brew services start postgresql

아래 구문은 컴퓨터 재부팅시 자동으로 서비스를 켜주는 구문이다.

$ pg_ctl -D /usr/local/var/postgres start && brew service start postgresql

psql 접속 및 DB 생성

$ psql postgres
postgres=# CREATE DATABASE <databaseName>;

새로운 유저를 만드는 명령어

postgres=# CREATE user <user_name> with password '<user_password>';

postgresql을 사용하기 위해 권한 설정

postgres=# alter role <user_name> set client_encoding to 'utf-8';
postgres=# alter role <user_name> set timezone to 'Asia/Seoul';
postgres=# grant all privileges on database <databaseName> to <user_name>;

DB 접속해서 생성한 부분 확인

user 확인하기

postgres=# \du

database 확인하기

postgres=# /l

좋은 웹페이지 즐겨찾기