[PostgreSQL] USER

Younghwan Cha·2022년 10월 20일
0

Database

목록 보기
9/16
post-thumbnail

create user role

CREATE USER <role name>;

alter user role

ALTER USER <role name> <option>;
// superuser 권한
ALTER USER cha with superuser;

ALTER USER cha with PASSWORD <pwd>; 

[change pg_user pwd] https://stackoverflow.com/questions/12720967/how-can-i-change-a-postgresql-user-password

profile
개발 기록

0개의 댓글