Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 971 Bytes

access_control.md

File metadata and controls

31 lines (23 loc) · 971 Bytes

Database Administration

postgres administration for microservice

Root user

Create the database as the root user. Then grant the user the database rights.

GRANT ALL PRIVILEGES ON database_name.* TO user@'%';

Creating superuser

ALTER ROLE <user> SUPERUSER;