wiki:UsersWikiPostGIS21Fedora19pgdg

How to install PostGIS 2.1 on Fedora 19 (Schrödinger's Cat) from packages

This installation method uses YUM packages maintained by Devrim GUNDUZ of the PostgreSQL Global Development Group (PGDG). For an overview of installing PostgreSQL using this method, see other details at http://wiki.postgresql.org/wiki/YUM_Installation.

Configure YUM

These instructions will assume your user account has administrative privileges using sudo, and/or that you are using a graphical editor gedit, however use whatever text utility you are comfortable with. Open a terminal, e.g., click on Applications > System Tools > Terminal.

Open the first file for editing:

sudo gedit /etc/yum.repos.d/fedora.repo

On line 10, at the end of the [fedora] section, insert:

exclude=postgresql*

Save and close the file. Open the second file:

sudo gedit /etc/yum.repos.d/fedora-updates.repo

On line 9, at the end of the [updates] section, insert:

exclude=postgresql*

Save and close the file.

Download and install PGDG RPM file

A PGDG RPM file needs to be downloaded for your platform and your PostgreSQL version requirements (you can choose the later). Find the correct RPM file for your system from here: http://yum.postgresql.org/repopackages.php

For example, if you have a 64-bit OS and want to install PostgreSQL 9.3:

curl -O http://yum.postgresql.org/9.3/fedora/fedora-19-x86_64/pgdg-fedora93-9.3-1.noarch.rpm
sudo rpm -ivh pgdg-fedora93-9.3-1.noarch.rpm

Install PostgreSQL, PostGIS, and dependencies

sudo yum install postgresql93-server postgis2_93

Initialize, configure and start PostgreSQL server

/usr/pgsql-9.3/bin/postgresql93-setup initdb
chkconfig postgresql-9.3 on
service postgresql-9.3 start
Last modified 10 years ago Last modified on Nov 9, 2013, 12:40:36 AM
Note: See TracWiki for help on using the wiki.