November 19

Linux: Postgresql

Check PostgreSQL version:
psql –version

Log into PostgreSQL. Login as default user i.e. postgres with password password_of_your_ubuntu_system:
sudo -u postgres psql

Create a new user for PostgreSQL and assign a password to it. Since it is not considered a good practice to persist your data in PostgreSQL through the default user i.e. postgres, we will create a new user and assign a password to it. It can be done by 2 possible ways:

First way:
sudo -u postgres createuser –interactive

Here, you would be asked name of the role/user, if you want to assign superuser privileges to the new user or not; and if not whether the user be allowed to create databases and new roles.
After creating the user, login to PostgreSQL console via the default user i.e. postgres and then alter the password for the user via following command (assuming the new user/role you created is lihas):

ALTER USER lihas WITH PASSWORD ‘lihas’;

Note: In case the name of your user contains capital letters, wrap the username into double quotes while performing all user related operations like:

ALTER USER “LiHaS” WITH PASSWORD ‘lihas’;

Second way:
Log into PostgreSQL console via the default user ie ‘postgres’ and then create the user:

CREATE USER lihas WITH PASSWORD ‘lihas’; –Assuming the new user/role we want to create is lihas

ALTER USER lihas WITH CREATEDB; –user lihas con create databases

ALTER USER lihas WITH CREATEUSER; –user lihas con create new users/roles

Note: According to the convention, whenever a new user is created; a database with the same name as the new username must be created and this database shall not be used to store data. You may create the database by following command 10 below.

List all users in PostgreSQL:
\du

Switch to a user:
SET ROLE user_name;

Check current user:
SELECT CURRENT_USER;

Delete a user/role:
DROP USER user_name;

List all databases:
\l

Create database:
CREATE DATABASE lihas_db;

By default, the owner of any database you create is postgres, if you want your database to belong to a specific user, switch to that user (see above) and then create the database.

Enter a database. Enter inside database via the default user:

\c database_name

…or…

\connect database_name

Enter inside the database with a specific user:

\c database_name user_name

If the above command does not work (Peer authentication failed), simply change the database first and then switch to the user (see command 6 above).

Note: You may also log in directly into a database with a certain user from the terminal by following command (with password as password_of_your_ubuntu_system).

sudo -u role_name psql db_name

But for this command to work, role_name must be a valid Linux user name. You may add a user to Linux by following :

sudo adduser role_name;

Drop database:

DROP DATABASE db_name;

List all tables:
\d

Describe schema of a table:
\d table_name

Exit out of PostgreSQL:
\q


Copyright 2021. All rights reserved.

Posted November 19, 2021 by Timothy Conrad in category "Linux

About the Author

If I were to describe myself with one word it would be, creative. I am interested in almost everything which keeps me rather busy. Here you will find some of my technical musings. Securely email me using - PGP: 4CB8 91EB 0C0A A530 3BE9 6D76 B076 96F1 6135 0A1B