This article is about installing PostgreSQL. Setting up a connection with r_keeper 7 is described in a separate article.
In this field, enter the following code with the name of the new database:
create database pgs; |
Enter the following code:
create user username password 'pgspgs'; grant all on database pgs to username; alter user username with createrole; |
This will create a username user with full access to the pgs database and the right to create roles.
To test the user creation in pgAdmin 4, type the following command in the Query Tool:
select * from pg_shadow |
A list of all users will appear: