Skip to content

Instantly share code, notes, and snippets.

@NickMcSweeney
Last active May 1, 2024 14:23
Show Gist options
  • Star 60 You must be signed in to star a gist
  • Fork 17 You must be signed in to fork a gist
  • Save NickMcSweeney/3444ce99209ee9bd9393ae6ab48599d8 to your computer and use it in GitHub Desktop.
Save NickMcSweeney/3444ce99209ee9bd9393ae6ab48599d8 to your computer and use it in GitHub Desktop.
Getting postgresql running on Arch Linux

Setup Postgresql

run postgresql with systemctl

Install postgres

latest

sudo pacman -S postgresql

specific version

find version & build from source

Check version

postgres --version

Confirm psql is not running

sudo systemctl status postgresql --> should not be running

Login as the postgres user

Note: always do this any time you are doing any type of admin work on psql

sudo su - postgres

Initialize data directory

Note: default db for psql is /var/lib/postgres/data

initdb --locale en_US.UTF-8 -D /var/lib/postgres/data

Logout of postgres user

exit

Confirm psql is still not running

sudo systemctl status postgresql --> should not be running

Start psql

sudo systemctl start postgresql

Confirm psql is running

sudo systemctl status postgresql --> should be active

Create user

Log into postgres

sudo su - postgres

Create a new user

Note: user can be called anything however if you create a PostgreSQL user with the same name as your Linux username, it allows you to access the PostgreSQL database shell without having to specify a user to login (which makes it quite convenient).

createuser --interactive

  • Enter name of role to add: MY_LINUX_USERNAME
  • Shall the new role be a superuser?: y

Logout of postgres user

exit

Restart psql

sudo systemctl restart postgresql

Confirm psql is running

Note: can see that it was restarted by looking at the timestamp on the Active field

sudo systemctl status postgresql

@khalidmesbah
Copy link

Thank you!

@VDVJakeTheDog
Copy link

This is well-documented and working like a charm, thank you kindly for putting this together!

@dongsub-joung
Copy link

Thank you!

@dev-shetty
Copy link

Thanks a lot!

@blaise-ndizeye
Copy link

Really straight foward!

@mohammedaouamri5
Copy link

that's was helpful

@kaloslazo
Copy link

Thank you, nice

@krzykamil
Copy link

Thank you, great cheatsheet

@seta-phucpham
Copy link

Truely legend

@gillespilon
Copy link

This is excellent! Thank you very much. It is clear, correct, and much easier to understand than the Arch Linux wiki page for postgresql.

@MohiuddinSumon
Copy link

This is a good writing and saves a lot of time, thanks.

@IElhari
Copy link

IElhari commented Apr 8, 2024

G.O.A.T.

@Tekila11
Copy link

worked thanks

@moncifbf
Copy link

moncifbf commented May 1, 2024

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment