How to install PostgreSQL and PostGIS using yum on CentOS7

How to install PostgreSQL and PostGIS using yum on CentOS7

1. Update the yum source

The PostgreSQL version of the default yum repository of CentOS7 is too old and is not suitable for use in this version. Find the RPM source suitable for CentOS7 at https://yum.postgresql.org/repopackages.php, copy its URL address, and install it using yum.

At the same time, install epel (Extra Packages for Enterprise Linux 7). For stability, the default yum source of CentOS7 lacks many components, which can be found on epel.

Order:

yum install -y https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm
yum -y install epel-release

2. Install PostgreSQL

Use the yum search postgre command to see multiple versions of PostgreSQL. Here I choose PostgreSQL10.
yum install -y postgresql10-server postgresql10-contrib
Initialize /usr/pgsql-10/bin/postgresql10-setup initdb
Set boot startup systemctl enable postgresql-10
Start the database systemctl start postgresql-10

3. Configure the database

  • Configure remote access, edit /var/lib/pgsql/10/data/postgresql.conf, find listen_addresses, if you want to open to all IPs, change the value of listen_addresses to '*', if you want to open to only some IPs, separate multiple IPs with , (comma plus space).
  • Configure account access permissions, edit /var/lib/pgsql/10/data/pg_hba.conf. The file is divided into 5 columns: TYPE, DATABASE, USER, ADDRESS, and METHOD. You can set different database access permissions for users with different IP addresses. The analysis of the last column METHOD is as follows:
  • trust Any connection is allowed, no password is required
  • reject rejects requests that meet the conditions (the previous conditions)
  • MD5 Receive an MD5 encrypted password
  • Password Receive a password to log in. Only use this method on trusted networks
  • gss uses gssapi authentication, only available in tcp/ip connection
  • sspi is only available in Windows
  • krb5 is not commonly used and is only available in TCP/IP
  • ident uses the operating system user name to authenticate and verify that it matches the requested database user name
  • ldap uses LDAP server authentication
  • cert uses ssl client authentication
  • pam Use the operating system's pam module service

If all IP addresses are required to log in using a password, configure it as host all all 0.0.0.0/0 md5.

4. Install PostGIS

Use the yum search postgis command to see multiple versions of PostGIS. Here I choose postgis25, yum install -y postgis25_10. After the installation is complete, switch to the postgres user and enable the extension.

// Enable plugin# su postgres 
# psql 
// Enable the pgsql plugin postgres=# create extension postgis; 
postgres=# create extension postgis_topology; 
postgres=# create extension fuzzystrmatch; 
postgres=# create extension address_standardizer; 
postgres=# create extension address_standardizer_data_us; 
postgres=# create extension postgis_tiger_geocoder;

At this point, PostgreSQL and PostGIS are installed.

Summarize

The above is what I introduced to you about how to install PostgreSQL and PostGIS on CentOS7 using yum. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time!

You may also be interested in:
  • How to run postgreSQL with docker
  • PostgreSQL Basics: A Practical Guide to SQL Operators
  • Django settings Postgresql operations
  • Python operation PostgreSQL database example [connection, addition, deletion, modification, query, etc.]
  • Example code for resetting PostgreSQL password on Mac
  • How to get the current date and time in PostgreSQL and precautions
  • Detailed explanation of the process of connecting Python to PostgreSQL database
  • PostgreSQL COALESCE usage code analysis

<<:  How to limit the value range of object keys in TypeScript

>>:  Quickly master how to get started with Vuex state management in Vue3.0

Recommend

Ubuntu 18.04 installs mysql 5.7.23

I installed MySQL smoothly in Ubuntu 16.04 before...

Element table header row height problem solution

Table of contents Preface 1. Cause of the problem...

Detailed explanation of how to use element-plus in Vue3

Table of contents 1. Installation 2. Import in ma...

Build a Docker private warehouse (self-signed method)

In order to centrally manage the images we create...

How to create an index on a join table in MySQL

This article introduces how to create an index on...

Graphical introduction to the difference between := and = in MySQL

The difference between := and = = Only when setti...

Detailed steps for QT to connect to MYSQL database

The first step is to add the corresponding databa...

How to use Volume to transfer files between host and Docker container

I have previously written an article about file t...

Detailed explanation of CSS counter related attributes learning

The CSS counter attribute is supported by almost ...

What is html file? How to open html file

HTML stands for Hypertext Markup Language. Nowada...

Example code for implementing background transparency and opaque text with CSS3

Recently, I encountered a requirement to display ...

Explain MySQL's binlog log and how to use binlog log to recover data

As we all know, binlog logs are very important fo...

VMware WorkStation 14 pro installation Ubuntu 17.04 tutorial

This article records the specific method of insta...

Detailed process of upgrading gcc (version 10.2.0) under CentOS7 environment

Table of contents Short Introduction 1. Check the...