wiki-js/sysadmin/Linux/PostgreSQL/create-user.md

440 B
Raw Blame History

title description published date tags editor dateCreated
Создание пользователя с правами на базы true 2023-11-15T17:53:56.246Z markdown 2023-11-15T17:53:56.246Z
CREATE USER schema_auth WITH PASSWORD postgres;
GRANT ALL PRIVILEGES ON DATABASE “mk_objects” to schema_auth;
GRANT ALL PRIVILEGES ON DATABASE “smvu2” to schema_auth;
ALTER ROLE schema_auth WITH Superuser;