rev="post-30" No Comments
Създаване на потребител в postgresql:
Изпълнява се от потребител postgres.
$ createuser
Enter name of role to add: username
Shall the new role be a superuser? (y/n) n
Shall the new role be allowed to create databases? (y/n) n
Shall the new role be allowed to create more new roles? (y/n) n
CREATE ROLE
Създаване на база данни:
$ createdb databasename
Даване на права на потребителя върху създадената база данни:
$ psql
postgres=# alter user username with encrypted password 'password';
postgres=# grant all privileges on database databasename to username;
Последни коментари