[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
Author And Source
이 문제에 관하여([PostgreSQL] 설치 및 설정하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@conficker77/PostgreSQL-설치-및-설정하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)