PostgreSQL 계정 및 database 생성

Kwon, Hyojin·2021년 2월 28일
0

Database

목록 보기
2/3
post-thumbnail

PostgreSQL 계정 및 database 생성하기

  1. postgres 권한으로 PostgreSQL 접속

    sudo -u postgres psql
  2. superuser 권한으로 계정 생성

    CREATE USER <username> SUPERUSER;
    ALTER USER <username> WITH PASSWORD 'password';
  3. database 생성

    CREATE DATABASE <dbname> with owner <username> encoding 'UTF8';
    \q  /* psql 종료 */
  4. PostgreSQL 재시작

    sudo systemctl restart postgresql
  5. 새 계정으로 새 database 접속

    psql -U <username> -h localhost <dbname>
  6. database 생성 확인

    \l  /* database list */
profile
파이썬 웹 백엔드 개발자

0개의 댓글