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
반응형
'Programming > Databse' 카테고리의 다른 글
[PostgreSql] 뷰(View) (0) | 2017.06.15 |
---|---|
[PostgreSql] 기본 쿼리 (0) | 2017.06.15 |
[PostgreSql] Centos7에서 PostgreSql 설치 (0) | 2017.06.15 |
[PostgreSql] 윈도우서버에서 PostgreSql 외부 접속 허용 (0) | 2017.06.14 |
[Database] 실행 계획 분석 (0) | 2017.03.17 |