Programming/PostgreSQL/Setup: Difference between revisions
Brodriguez (talk | contribs) (Move basic "access shell" commands to PostgreSQL page) |
Brodriguez (talk | contribs) (Clean up page to remove unnecessary text) |
||
Line 1: | Line 1: | ||
== Installation == | == Installation == | ||
=== Windows === | |||
Download and install from: https://www.postgresql.org/download/windows/ | |||
=== Arch Linux === | === Arch Linux === | ||
Basic installation can be performed with: | Basic installation can be performed with: | ||
Line 13: | Line 16: | ||
== User Management == | == User Management == | ||
{{ note | Unless otherwise specified, all commands from this section assumes you're in the [[PostgreSQL#Basics | PostgreSQL shell]]. }} | |||
'''Roles''' in PostreSQL are the equivalent of MySQL's '''Users'''. | '''Roles''' in PostreSQL are the equivalent of MySQL's '''Users'''. | ||
Line 20: | Line 25: | ||
=== List All Users === | === List All Users === | ||
\du | \du | ||
=== Create User === | === Create User === | ||
==== Via PostgreSQL Shell ==== | |||
First, invoke a PostgreSQL shell that has PostgreSQL '''role''' privileges: | |||
CREATE USER <user_name> WITH ENCRYPTED PASSWORD '<password>'; | |||
==== Via Linux Shell ==== | ==== Via Linux Shell ==== | ||
First, invoke a system user that has PostgreSQL '''role''' privileges. | First, invoke a system user that has PostgreSQL '''role''' privileges. | ||
Line 30: | Line 38: | ||
createuser --interactive | createuser --interactive | ||
Alternatively, create a | Alternatively, create a user and enable permissions with flags via: | ||
createuser <flags> <user_name> | createuser <flags> <user_name> | ||
See https://www.postgresql.org/docs/current/app-createuser.html for possible flags. | |||
=== Remove User === | === Remove User === | ||
DROP OWNED BY <user_name>; | DROP OWNED BY <user_name>; | ||
DROP USER <user_name>; | DROP USER <user_name>; | ||
=== Change User Password === | === Change User Password === | ||
ALTER USER <user_name> WITH ENCRYPTED PASSWORD '<password>'; | ALTER USER <user_name> WITH ENCRYPTED PASSWORD '<password>'; | ||
=== Change User Permissions === | === Change User Permissions === | ||
ALTER ROLE <user_name> WITH <options>; | ALTER ROLE <user_name> WITH <options>; | ||
For all current available user permissions, see https://www.postgresql.org/docs/current/sql-createrole.html | For all current available user permissions, see https://www.postgresql.org/docs/current/sql-createrole.html |
Revision as of 04:36, 20 November 2020
Installation
Windows
Download and install from: https://www.postgresql.org/download/windows/
Arch Linux
Basic installation can be performed with:
sudo pacman -Syu postgresql sudo -u postgres initdb --locale=en_US.UTF-8 -E UTF8 -D /var/lib/postgres/data sudo systemctl start postgresql.service sudo systemctl enable postgresql.service
Ubuntu
Basic installation can be performed with:
sudo apt install postgresql postgresql-contrib
User Management
Roles in PostreSQL are the equivalent of MySQL's Users.
However, documentation online (and even PostgreSQL's shell commands) seem inconsistent regarding which name it uses.
Due to habit, the rest of this wiki will probably refer to roles as users.
List All Users
\du
Create User
Via PostgreSQL Shell
First, invoke a PostgreSQL shell that has PostgreSQL role privileges:
CREATE USER <user_name> WITH ENCRYPTED PASSWORD '<password>';
Via Linux Shell
First, invoke a system user that has PostgreSQL role privileges.
Create a new user via an interactive GUI:
createuser --interactive
Alternatively, create a user and enable permissions with flags via:
createuser <flags> <user_name>
See https://www.postgresql.org/docs/current/app-createuser.html for possible flags.
Remove User
DROP OWNED BY <user_name>; DROP USER <user_name>;
Change User Password
ALTER USER <user_name> WITH ENCRYPTED PASSWORD '<password>';
Change User Permissions
ALTER ROLE <user_name> WITH <options>;
For all current available user permissions, see https://www.postgresql.org/docs/current/sql-createrole.html