1. 계정 생성

[smoh@localhost /]$ sudo su - postgres
-bash-4.2$ psql
postgres=# CREATE USER smoh WITH PASSWORD '(your_password)';


2. 계정 확인 

postgres=# SELECT usename FROM pg_catalog.pg_user;


3. 권한 추가 (원하는 기능을 골라서 추가.)

postgres=# ALTER USER smoh WITH SUPERUSER;
postgres=# ALTER USER smoh WITH CREATEDB;
postgres=# ALTER USER smoh WITH CREATEROLE;
postgres=# ALTER USER smoh WITH REPLICATION;
(모두 추가하면 기본 유저인 postgres와 같은 권한을 갖게 됨)


4. DB 추가

postgres=# CREATE DATABASE myTable OWNER smoh;


5. DB 확인

postgres=# \list


반응형

+ Recent posts