Postgres Setup
Welcome! This guide will help you set up PostgreSQL (often shorted to just Postgres) on your Windows or Mac computer. Postgres is a program for managing databases. We will build applications that communicate with Postgres to manage databases.
Table of Contents
What even is a database?
A database is a structured collection of data that is organized and stored in a way that computers can efficiently retrieve, manage, and update the data.
Postgres is a relational database management system (RDBMS), a program that makes it easier for users to find, update, and manage the data through the use of SQL queries.
If a database is like a library, then a relational database management system is like a librarian with a particular catalog system.
Here's some quick info about Postgres and relational database management systems:
Data is separated into collections called tables, spreadsheet-like structures that represent a single type of value or "entity" (e.g. users, posts, comments, likes, etc...)
Each row represents a single resource in the table. (e.g. a single user in the users table)
Each column defines a property that all resources of a table share (e.g. a users table has
id
,username
, andpassword
columns).
Tables can be related to each other, typically by referencing the
id
of another table (e.g. a posts table has auser_id
column so that each post is related to the user in the users table that created it)
Installation Instructions
Follow the instructions below according to your operating system:
Open up your Ubuntu Terminal
Make sure your Ubuntu packages are up to date by running the command:
sudo apt update
Now, install Postgres by running the command:
sudo apt install postgresql postgresql-contrib
. You may have to type inY
, to allow it to proceed.Confirm the installation and check the version number by running the command:
psql --version
and you should see a version number appear!Check the status of your PostgreSQL server by running the command:
sudo service postgresql status
. It should say it is "down".Turn on PostgreSQL. You can do so by running
sudo service postgresql start
. Check the status of postgres and it should be "online" on port 5432.Check out the Important Commands / Configuration section of this page for more commands like this.
In order to access your Postgres databases, you'll need a user account (called a "role"). By default, the installation process creates a user called
postgres
which you can use.Now, connect to the Postgres service as the
postgres
user and open thepsql
shell by running the command:sudo -u postgres psql
Once you have successfully entered the
psql
shell, you will see your command line change to look like this:postgres=#
Now we'll add a password for the
postgres
user. Run the command:ALTER USER postgres WITH ENCRYPTED PASSWORD 'your password';
.Replace the password with something short and memorable (e.g.
'123'
is fine). NOTE: Keep the quotation marks around your password and the semicolon!
Now, let's play around with Postgres!
Interacting with Databases
Play Around With psql
psql
Before you exit the psql
terminal, let's learn a little bit about it. If you already exited it you can get back in through your terminal:
Windows:
sudo -u postgres psql
Mac:
psql -U postgres
The psql
terminal is a way to manage your Postgres databases using a command-line interface. There are a few useful commands to know so you can get around. Try these out:
\l
This lists all of the databases. By default, you are given one called
postgres
and two protected ones calledtemplate0
andtemplate1
.
CREATE DATABASE test;
(remember the semicolon!)This will create a new database called
test
stored and managed by Postgres.Use the
\l
command again to see the updated list.
\c test
to connect to your new
test
database. You should see the command line prompt change totest=#
CREATE TABLE friends ( id INT, name TEXT );
Remember the semicolon!
This will create a table called
friends
with 2 columns calledid
andname
.id
values must be integers andname
values can be any text.
INSERT INTO friends (id, name) VALUES (1, 'reuben');
This will create a row in the
friends
table.Try running this SQL query with different values to add more values to your table
SELECT id FROM friends;
This will select all rows from the
friends
table, but only show theid
column
SELECT id, name FROM friends;
This will select the same row, but include the
name
column
SELECT * FROM friends;
This will select all rows and all columns (a different approach to get the same result as above)
SELECT name FROM friends WHERE id=1;
What do you think this one does?
You can now exit your psql shell by typing in \q
and hitting enter
TablePlus
Before setting up TablePlus, double check that your Postgres Server is up and running:
Windows: in the terminal start your Postgres server with
sudo service postgresql start
.Mac: Click the Start button so that the Red X turns into a Green checkmark.

Interacting with Postgres through the command-line interface may make you feel like a pro, but let's face it, it isn't the best. TablePlus is a GUI (graphical user interface) that makes viewing your databases much nicer.
Download tableplus from their website. Make sure to download the corresponding version for your OS.
After installing and opening the application, click the "Create A New Connection..." towards the bottom of the window. You will see a prompt to select the type of database you want to connect to. Select Postgresql.
Now, you'll enter the configurations for this connection:
For Name, enter
postgres
since we are connecting to our Postgres server.For Host, enter
localhost
or127.0.0.1
(these are equivalent)For Port, enter
5432
.For the user field, enter
postgres
.In the password field, enter the password you created for user
postgres
in step 10.Leave the remaining fields blank
Click the test button, and if everything is successful, all of the fields should be highlighted green! At that point, click connect, and you should be able to view the GUI client for your database.
Now, let's play around with TablePlus. Start by clicking on the Database Icon. Then create a database called tabeplus-test
and open it!

Next, click on the SQL
button and write your own SQL queries.
CREATE TABLE friends ( id INT, name TEXT );
Remember the semicolon!
This will create a table called
friends
with 2 columns calledid
andname
.id
values must be integers andname
values can be any text.
INSERT INTO friends (id, name) VALUES (1, 'reuben');
This will create a row in the
friends
table.Try running this SQL query with different values to add more values to your table
SELECT id FROM friends;
This will select all rows from the
friends
table, but only show theid
column
SELECT id, name FROM friends;
This will select the same row, but include the
name
column
SELECT * FROM friends;
This will select all rows and all columns (a different approach to get the same result as above)
SELECT name FROM friends WHERE id=1;
What do you think this one does?
Conclusion
That's it! Now that you can connect to your Postgres database using either the psql
CLI or using a GUI like TablePlus, you're ready to learn more about how to access and manage your database using SQL.
Important Commands / Configuration
Checking your Postgres server status
For Windows users, check your Postgres server status in your terminal:
sudo service postgresql status
- to see if your server is runningsudo service postgresql start
- to start your postgresql serversudo service postgresql restart
- to restart your postgresql server
For Mac users, check your Postgres server status through the Postgres application.

Connecting to the PSQL terminal
To connect to your Postgres server as the postgres
user:
For Windows Users:
sudo -u postgres psql
For Mac Users:
psql -U postgres
Using the PSQL terminal
In your psql
terminal:
\du
to see a list of users\q
to quit\l
to see a list of databases\c database_name
to connect to a database\dt
to see a list of tables in the connected database
And you can also run any SQL commands from the psql
terminal (remember the semicolon!):
CREATE DATABASE db_name;
to create a new databaseSELECT * FROM table;
to see all rows from the given tableALTER USER username WITH ENCRYPTED PASSWORD 'password';
to set a password (use single quotes)
Tableplus Postgres Server Connection Configuration
Host/Socket:
127.0.0.1
orlocalhost
Port:
5432
User: Enter your username or
postgres
Database:
postgres
(the default will be the same as the user value)
Troubleshooting
If you can't connect to your database because of
FATAL: password authentication failed for user <username>
, ask your instructor for help. They will do the following:
Find and edit your
pg_hba.conf
usingvim
:sudo vim /etc/postgresql/12/main/pg_hba.conf
(where12
is the version number)Alternately, find notepad or notepad++ in your start menu, right click, choose "Run as administrator", then use File->Open to open
pg_hba.conf
that way.Update the
"host"
line for user"postgres"
on host"127.0.0.1/32"
from"md5"
to"trust"
.You can add the line if it isn't there; just insert
host all postgres 127.0.0.1/32 trust
before any other lines. (You can ignore comments, lines beginning with #).
Restart the PostgreSQL service:
sudo service postgresql restart
Connect using
sudo -u postgres psql
/psql
Run
ALTER USER postgres PASSWORD 'fooBarEatsBarFoodBareFoot';
(don't forget the;
!)Remove the line you added to
pg_hba.conf
or change it backRestart PostgreSQL again to bring the changes to effect.
Try connecting again
Last updated