Sei sulla pagina 1di 6

HOW TO INSTALL POSTGRESQL 11 ON LINUX MINT 19 TARA

The installation process for PostgreSQL 11 on Ubuntu or Linux Mint is, like a lot of things in the Linux world,
less than intuitive for new users. As much for my own benefit as anyone else's, Now I am going to walk
through the steps to getting PostgreSQL installed and configured on a Linux box.

Note: if you are an experienced Linux user, or a


PostgreSQL DBA, this is not the post for you, even though
your remarks and constructive criticism are very welcome –
in case you see something either incorrect or missing, please
do let me know inside the comments below.
PostgreSQL is a amazing database platform. PostgreSQL is free, cross-platform, and gives an high-quality
function set which, in my mind, exceeds the ones of its similar platform in the relational database area. We’ll
take a tour of PostgreSQL in every other posts, but first, let’s get the thing installed and running.

Installation steps for PostgreSQL 11 on Linux Mint


19
Currently, my everyday Linux distro is Linux Mint 19 Tara along with the Cinnamon Desktop. This is a stable
release and could be a fantastic distro if you haven't use Linux already. If you do not have a dedicated Linux
machine, it is simple enough to spin up a VM using Virtual Box.

As of this writing, the most up-to-date version of PostgreSQL is version 11, released at 2018-10-18.
However, the 11 release is not available directly using the Advanced Packaging Tool (APT) or the Linux Mint
Software Manager.

Fortunately, the PostgreSQL Global Development Group (PGDG) maintain an apt repository of PostgreSQL
packages for Debian and Ubuntu-derived Linux distros, located at http://apt.postgresql.org/pub/repos/apt/

Before we can install PostgreSQL, we have to add the package source for the distro we are currently using.
In this case, I have been using Linux Mint 19 Tara, which is derived from (and therefore should be
compatible with) Ubuntu 18.04 ("Bionic Beaver") release. We'll understand why this matters in a short while.

What's currently supported:

Debian 8 (jessie), 9 (stretch), 10 (buster), and unstable (sid)


Ubuntu 14.04 (trusty), 16.04 (xenial), 18.04 (bionic)
Architectures: amd64 (64-bit x86), i386 (32-bit x86), ppc64el (little-endian 64-bit POWER; not on
wheezy/precise)
PostgreSQL 9.3, 9.4, 9.5, 9.6, 10, 11 RC, 12 devel
Server extensions such as Slony-I, various PL languages, and datatypes
Applications like pgadmin3, pgbouncer, and pgpool-II

Add the PostgreSQL Package Source for Your


Linux Distribution
We need to create a sources file reflecting the proper PostgreSQL source for our specific distro. As noted
above, in my case I'll need the source appropriate for the "Bionic" release of Ubuntu. We can accomplish this
from the terminal to add the file (make sure to use sudo in all of the following steps):

Add the PGDG APT source file

Create a file at
/etc/apt/sources.list.d/postgresql.list with the following command:
$ sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main" > \
/etc/apt/sources.list.d/postgresql.list'

Add the PostgreSQL Package Repository Key

Next, add the package repository key:

$ wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -


Update, Upgrade, and Install PostgreSQL

Update system package source. Once this task is done, we proceed with upgrade packages to the latest
versions.

$ sudo apt-get update


$ sudo apt-get upgrade

Please note that this can be a long process. Also, you may be prompted at several points to make some
choices about configuration items. Specifically, you may informed that this that or the other configuration file
has been changed, and asked if you want to keep your original version, or replace with the package
maintainer’s version. Select "Y" to accept the package maintainer’s version in these cases.

Next step is installing PostgreSQL 11:

$ sudo apt-get install postgresql-11

After pressing "Enter" you will be asked whether to continue with installation or not.

Reading package lists... Done


Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libpq5 pgdg-keyring postgresql-client-11 postgresql-client-common
postgresql-common
Suggested packages:
locales-all postgresql-doc-11 libjson-perl
Recommended packages:
sysstat
The following NEW packages will be installed:
libpq5 pgdg-keyring postgresql-11 postgresql-client-11
postgresql-client-common postgresql-common
0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded.
Need to get 15,9 MB of archives.
After this operation, 52,5 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y

Press "Y" and then "Enter". It will then download all necessary files and continue with installation.

Configuring Postgres for Use


The postgres user

While PostgreSQL become installed, a system user account named postgres was also created with an
identical user account in postgres. By default, the postgres user account isn't configured with a password, so
it isn't viable to log into the server the use of the postgres user account without first creating a password for it.
This postgres account has an all-access pass on your PostgreSQL database server, permission-wise.
The postgres user account has similarities to the sa account in SQL server.

The postgres database

PostgreSQL is installed with a default database postgres . For the most part, we use the postgres database
for administration functions, and create new databases on the PostgreSQL server to suit our needs.
The psql Command Line Utility

PostgreSQL consists of psql , a command line application for managing your databases and server. While a
GUI-based software such as pgadmin3 is often less complicated to use in the daily task, the command line
utilty psql is always handy. psql gives total control of your postgres system from the terminal, together with
the ability to execute SQL queries.

We will use psql to perform our preliminary configuration and to create an initial database super user.

Create super user account

In this step we will super-user account to deals with our database in the daily task.

To do this, we will get access to the postgres account through your machine root user. Then we'll use
that postgres account to create a brand new super-user account for your PostgreSQL installation which can
be regulated more efficiently. As an example we will use adjie as our new PostgreSQL super-user account.

$ sudo su -
[sudo] password for adjie:
# su - postgres
$ psql
postgres=# CREATE USER adjie

postgres-# WITH SUPERUSER CREATEDB CREATEROLE

postgres-# PASSWORD 'your-preferred-password';

Notice in the above we can enter multiple lines of command in SQL shell. The SQL is not executed until
semi-colon followed enter is found. Which means, the semi-colon will make the shell execute entered
commands. After pressing "Enter" it will respond with something like this:

CREATE ROLE
postgres=#

Which means we've successfully created this new superuser account.

Login using our newly created account

Let's verify that everything is working correctly. Try to log in with psql using our new super-user account and
create a quick test database:

$ psql postgres
psql (11.0 (Ubuntu 11.0-1.pgdg18.04+2))
Type "help" for help.

postgres=#

Note in the above terminal session, we specified the postgres default database when we logged in, since
there aren’ tyet any other databases to connect to.

Create test database

Next test is to create test database test_database using our new super-user account:
postgres=# CREATE DATABASE test_database WITH OWNER adjie;
CREATE DATABASE
postgres=# \connect test_database;
You are now connected to database "test_database" as user "adjie".
test_database=#

If everything works as shown, then congratulations. Now you have a working installation of PostgreSQL 11
on Linux Mint 19 Tara.

Optional step

If you would like to manipulate your database in graphical mode, then pgadmin4 is the way to go. Install
pgadmin4 by issuing this command:

$ sudo apt-get install pgadmin4

After pressing "Enter" you will be asked whether to continue with installation or not, something like this:

Reading package lists... Done


Building dependency tree
Reading state information... Done
The following additional packages will be installed:
alembic fonts-font-awesome fonts-glewlwyd fonts-open-sans libjs-jquery
libjs-sphinxdoc libjs-underscore pgadmin4-common python-babel-localedata
python3-alembic python3-asn1crypto python3-babel python3-blinker
python3-click python3-colorama python3-cryptography python3-dateutil
python3-flask python3-flask-babelex python3-flask-gravatar
python3-flask-htmlmin python3-flask-login python3-flask-mail
python3-flask-migrate python3-flask-paranoid python3-flask-principal
python3-flask-security python3-flask-sqlalchemy python3-flaskext.wtf

python3-htmlmin python3-itsdangerous python3-jinja2 python3-paramiko


python3-passlib python3-psycopg2 python3-pyasn1 python3-simplejson
python3-sqlalchemy python3-sqlparse python3-sshtunnel python3-werkzeug
python3-wtforms
Suggested packages:
pgadmin4-doc python3-editor python-blinker-doc python-cryptography-doc
python3-cryptography-vectors python-flask-doc python-flask-login-doc
python-jinja2-doc python3-gssapi python-psycopg2-doc python-sqlalchemy-doc
python3-pymysql python3-fdb python-sqlparse-doc ipython3 python3-lxml
python3-termcolor python3-watchdog python-werkzeug-doc python3-django
python3-django-localflavor
Recommended packages:
javascript-common python3-openssl
The following NEW packages will be installed:
alembic fonts-font-awesome fonts-glewlwyd fonts-open-sans libjs-jquery
libjs-sphinxdoc libjs-underscore pgadmin4 pgadmin4-common
python-babel-localedata python3-alembic python3-asn1crypto python3-babel
python3-blinker python3-click python3-colorama python3-cryptography
python3-dateutil python3-flask python3-flask-babelex python3-flask-gravatar
python3-flask-htmlmin python3-flask-login python3-flask-mail
python3-flask-migrate python3-flask-paranoid python3-flask-principal
python3-flask-security python3-flask-sqlalchemy python3-flaskext.wtf
python3-htmlmin python3-itsdangerous python3-jinja2 python3-paramiko
python3-passlib python3-psycopg2 python3-pyasn1 python3-simplejson
python3-sqlalchemy python3-sqlparse python3-sshtunnel python3-werkzeug
python3-wtforms
0 upgraded, 43 newly installed, 0 to remove and 0 not upgraded.
Need to get 10,8 MB of archives.
After this operation, 62,5 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y

Press "Y" and then "Enter". It will then download all necessary files and continue with installation.

Final Words
I hope that you now know how to install PostgreSQL 11 on Linux Mint 19 Tara. If you run into any issues
or have any feedback feel free to drop a comment below.

Reference
https://wiki.postgresql.org/wiki/Apt

https://r00t4bl3.com/post/how-to-install-postgresql-11-on-linux-mint-19-tara

Potrebbero piacerti anche