How to install PostgreSQL11 on CentOS7

How to install PostgreSQL11 on CentOS7

Install PostgreSQL 11 on CentOS 7

PostgreSQL: The World's Most Advanced Open Source Relational Database

In order to learn about the world's most advanced open source relational database, you must first install it. Next, install PostgreSQL 11 on CentOS 7.

environment

Alibaba Cloud CentOS 7.3.1611

PostgreSQL 11

PostgreSQL

PostgreSQL is an object-relational database management system (ORDBMS) based on POSTGRES, which was developed by the Department of Computer Science at the University of California, Berkeley and has now been renamed PostgreSQL, version 4.2. PostgreSQL supports most of the SQL standard and provides many other modern features: complex queries, foreign keys, triggers, views, transactional integrity, MVCC. Likewise, PostgreSQL can be extended in many ways, for example, by adding new data types, functions, operators, aggregate functions, and indexes. PostgreSQL is free to use, modify, and distribute for private, commercial, and academic research purposes.

PostgreSQL has had a built-in JSON data type since version 9.3, and JSONB support since version 9.4, indicating that PostgreSQL is actually a combination of a relational database and a NoSQL database. Although PostgreSQL is still positioned as a relational database, in recent updates, PostgreSQL's NoSQL performance has soared and even surpassed MongoDB.

PostgreSQL Installation

Here we install PostgreSQL 11 in rpm mode

# Download rpm package yum install https://download.postgresql.org/pub/repos/yum/11/redhat/rhel-7-x86_64/pgdg-redhat11-11-2.noarch.rpm -y

# Install yum -y install postgresql11 postgresql11-server postgresql11-libs

# Initialize the database /usr/pgsql-11/bin/postgresql-11-setup initdb

# Set PostgreSQL to start automatically at boot and start the service systemctl enable postgresql-11
systemctl start postgresql-11
systemctl status postgresql-11
## If you see the word "Running" after "Active" in the console output, it means the startup is complete.

PostgreSQL Connection

# Log in to the database, switch account postgres here
su - postgres
psql

# Navicat connects to PostgreSQL
# Here we need to modify the configuration file postgresql.conf
find / -name postgresql.conf
vi /var/lib/pgsql/11/data/postgresql.conf

# Find listen_address, uncomment it and change the value of localhost in quotes to *
listen_address="*"

# Save and exit, restart the postgresql service systemctl restart postgresql-11

# Alibaba Cloud Security Group Rule Configuration -> Quickly Add Security Group Rules -> Select PostgreSQL and add # In Navicat, if you do not change localhost to *, Navicat will prompt an error "Connection Refuse" when connecting.

# I changed the password of the postgres user here, the steps are as follows:
## Switch user and enter psql
su - postgres
psql
## Change password alter user postgres password 'password' 

Connection successful!

At this point, PostgreSQL is set up. Setting up PostgreSQL on Windows is relatively simple. Next, learn PostgreSQL!

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to get the current date and time in PostgreSQL and precautions
  • PostgreSQL tree structure recursive query example
  • Syntax and usage of window functions in PostgreSQL database
  • How to implement batch insert, update and merge operations in PostgreSQL
  • PostgreSQL stored procedure usage practical explanation
  • Example code for resetting PostgreSQL password on Mac

<<:  jQuery plugin to implement minesweeper game (1)

>>:  MySQL uninstall and install graphic tutorial under Linux

Recommend

New settings for text and fonts in CSS3

Text Shadow text-shadow: horizontal offset vertic...

The concrete implementation of JavaScript exclusive thinking

In the previous blog, Xiao Xiong updated the meth...

The difference between div and span in HTML (commonalities and differences)

Common points: The DIV tag and SPAN tag treat som...

HTML background color gradient achieved through CSS

Effect screenshots: Implementation code: Copy code...

Web Design Experience: Self-righteous Web Designers

1. Trash or Classic? Web technology updates very ...

Ubuntu installation Matlab2020b detailed tutorial and resources

Table of contents 1. Resource files 2. Installati...

How to solve the 2002 error when installing MySQL database on Alibaba Cloud

The following error occurred while installing the...

Write your HTML like this to make your code more compatible

For example, users who need screen reading softwar...

PostgreSQL materialized view process analysis

This article mainly introduces the process analys...

Explanation of the problem that JavaScript strict mode does not support octal

Regarding the issue that JavaScript strict mode d...

How to monitor global variables in WeChat applet

I recently encountered a problem at work. There i...

Getting Started: A brief introduction to HTML's basic tags and attributes

HTML is made up of tags and attributes, which are...

Detailed explanation of the problem of CSS class names

The following CSS class names starting with a num...

A Brief Analysis of the Differences between “:=” and “=” in MySQL

= Only when setting and updating does it have the...