search
HomeOperation and MaintenanceLinux Operation and MaintenanceHow to install and use PostgreSQL and PostGIS in Linux

This article mainly introduces the installation and use of PostgreSQL and PostGIS in Linux, and analyzes and explains the points that need to be paid attention to. Friends who need it can learn from it. I hope it can help everyone.

Installing PostgreSQL and PostGIS

PostgreSQL and PostGIS are already popular open source projects and have been included in the yum or apt packages of major Linux distributions. For Ubuntu, for example, just install the following packages:


$ sudo apt-get install postgresql-client postgresql postgis -y

For RedHat series, please install:


$ sudo yum install postgresql-server postgresql postgis

First time installation Afterwards, a database named postgres and a database user named postgres are generated by default. It should be noted here that a Linux system user named postgres is also generated. When we operate PostgreSQL in the future, we should do it in this newly created postgres user.

PostgreSQL configuration

If you are installing from the source code

It is not recommended to install from the source code. I have tried to install from the source code. It is too troublesome, and various Make install is error-prone. Finally I installed it using rpm. But since I spent some time researching and I successfully installed it, I'll record it - however, there may be errors, so if readers want to install from source code, please be prepared to roll back.

If you are using source compilation and make install installation, then this section requires additional configuration.

It seems that the installation of the CentOS series also requires...

After the default make install, the PostgreSQL installation directory is: /usr/local/pgsql/

First, according to For the reference of this link, you need to configure the environment variable


$ set $PGDATA = "/usr/local/pgsql/database"

but after executing pg_ctl start, an error will appear:


pg_ctl: directory "/usr/local/pgsql/database" is not a database cluster directory

In this case, you need to follow the steps in the official PostGreSQL documentation to create a real database:

PostgreSQL: Documentation: 9.1: Creating a Database Cluster

First of all Create a user account named postgres


$ usradd postgres
$ sudo chown postgres /usr/local/pgsql/database

Then enter this account and create database


$ sudo su postgres
$ initdb -D /usr/local/pgsql/database/

At this time shell It will output:


The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.

The database cluster will be initialized with locale "C".
The default database encoding has accordingly been set to "SQL_ASCII".
The default text search configuration will be set to "english".

Data page checksums are disabled.

fixing permissions on existing directory /usr/local/pgsql/database ... ok
creating subdirectories ... ok
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting dynamic shared memory implementation ... posix
creating configuration files ... ok
creating template1 database in /usr/local/pgsql/database/base/1 ... ok
initializing pg_authid ... ok
initializing dependencies ... ok
creating system views ... ok
loading system objects' descriptions ... ok
creating collations ... ok
creating conversions ... ok
creating dictionaries ... ok
setting privileges on built-in objects ... ok
creating information schema ... ok
loading PL/pgSQL server-side language ... ok
vacuuming database template1 ... ok
copying template1 to template0 ... ok
copying template1 to postgres ... ok
syncing data to disk ... ok

WARNING: enabling "trust" authentication for local connections
You can change this by editing pg_hba.conf or using the option -A, or
--auth-local and --auth-host, the next time you run initdb.
Success. You can now start the database server using:
pg_ctl -D /usr/local/pgsql/database/ -l logfile start

Congratulations, you can start PostgreSQL next:


pg_ctl -D /usr/local/pgsql/database/ -l /usr/local/pgsql/database/psql.log start

After PostgreSQL is installed

Enter the postgres account and enter the PostgreSQL console:


$ sudo su postgres
$ psql

This is equivalent to the system user postgres logging in to the database as a database user with the same name, otherwise Every time we execute psql, we must specify the user in the parameters, which is easy to forget.

Set a password in psql - it should be noted that the password set here is not the password of the postgres system account, but the user password in the database:


postgres=# \password postgres

Then just enter the password as prompted.

Install PostGIS from source code

If you choose to install PostgreSQL from source code, you first need to determine what version of PostgreSQL you have installed

Then, go to PostGIS Go to the web page to check which version of PostGIS it corresponds to.

Finally, download the corresponding source according to the version of PostGIS

The final import is very troublesome. The author is stuck at this step, so I finally gave up installing from the source code...

Import PostGIS extension

According to different versions of postgresql and postgis, the path will be somewhat different, mainly because the path contains version information:


$ sudo su postgres
$ createdb template_postgis
$ createlang plpgsql template_postgis
$ psql -d template_postgis -f /usr/share/postgresql/9.5/contrib/postgis-2.2/postgis.sql
$ psql -d template_postgis -f /usr/share/postgresql/9.5/contrib/postgis-2.2/spatial_ref_sys.sql

In the above operation, an empty database called "template_postgis" was created. This database is empty and belongs to the postgres user. Be careful not to add data to this database. The reason why this database is called a "template" means that it is used for derivation.

The corresponding PostGIS path may be different. If it fails, try more near the above path and find a few .sql files to try.

Convert .shp file to PostGIS database

Convert .shp to .sql file

First find the file that needs to be converted, assuming that it needs to be converted The .shp file is: /tmp/demo.shp, then do the following:


$ sudo su postgres
$ cd /tmp
$ shp2pgsql -W GBK -s 3857 ./demo.shp entry > demo.sql

Here we need to explain the meaning of each part of the last sentence:

  • -W GBK: If your .shp file contains Chinese characters, please add this option

  • -s 3857: Specify the reference coordinates of the file system. My .shp file uses EPSG:3857

  • ./demo.shp: The path of the .shp file

  • entry: indicates that you want Imported database table name - assuming that this .shp file represents each entry, so I named it "entry"

  • demo.sql

After getting the .sql file, you can directly import it into the PostgreSQL database.

Create a PostGIS database

You need to use the previous template here.


sudo su postgres
psql
CREATE DATABASE newdb WITH TEMPLATE originaldb OWNER dbuser;
  • newdb: new database name

  • originaldb: which is the previous template_postgis

  • dbuser:你的账户名,我一般使用 postgres

导入 .sql 文件


sudo su postgres
psql
\c newdb
\i demo.sql
\d

可以看到,.sql 文件已经被导入了。

设置数据库权限

OK,现在我们在本机(服务器 IP 假设是 192.168.1.111)用以下命令登录 psql,会发现一段输出:


$ psql -h 192.168.1.111 -p 5432
psql: could not connect to server: Connection refused
    Is the server running on host "100.94.110.105" and accepting
    TCP/IP connections on port 5432?

这是因为 PostgreSQL 默认不对外开放权限,只对监听环回地址。要修改的话,需要找到 postgresql.conf 文件,修改值 listen_addresses:


listen_addresses = '*'

相关推荐:

Python连接PostgreSQL数据库的方法

PHP连接不上PostgreSQL的问题

PHP 读取Postgresql中的数组_PHP教程

The above is the detailed content of How to install and use PostgreSQL and PostGIS in Linux. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
什么是linux设备节点什么是linux设备节点Apr 18, 2022 pm 08:10 PM

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

linux下安装zip的命令有哪些linux下安装zip的命令有哪些Apr 24, 2022 pm 07:28 PM

linux安装zip的命令有:1、“yum install zip”命令,可安装zip压缩程序,压缩后的文件后缀名为“.zip”;2、“yum install unzip”命令,可安装unzip解压缩程序,可为“.zip”压缩文件进行解压。

MySQL和PostgreSQL:在Web开发中的最佳实践MySQL和PostgreSQL:在Web开发中的最佳实践Jul 14, 2023 pm 02:34 PM

MySQL和PostgreSQL:在Web开发中的最佳实践引言:在现代的Web开发领域中,数据库是必不可少的组成部分。在选择数据库时,常见的选择是MySQL和PostgreSQL。本文将介绍在Web开发中使用MySQL和PostgreSQL的最佳实践,并提供一些代码示例。一、适用场景MySQL适用于大多数Web应用程序,特别是那些需要高性能、可扩展性和易于使

MySQL和PostgreSQL:性能对比与优化技巧MySQL和PostgreSQL:性能对比与优化技巧Jul 13, 2023 pm 03:33 PM

MySQL和PostgreSQL:性能对比与优化技巧在开发web应用程序时,数据库是不可或缺的组成部分。而在选择数据库管理系统时,MySQL和PostgreSQL是两个常见的选择。他们都是开源的关系型数据库管理系统(RDBMS),但在性能和优化方面有一些不同之处。本文将比较MySQL和PostgreSQL的性能,并提供一些优化技巧。性能对比在比较两个数据库管

MySQL和PostgreSQL:数据安全与备份策略MySQL和PostgreSQL:数据安全与备份策略Jul 13, 2023 pm 03:31 PM

MySQL和PostgreSQL:数据安全与备份策略引言:在现代社会中,数据成为了企业和个人生活中不可或缺的一部分。对于数据库管理系统来说,数据安全与备份策略是至关重要的,既能保护数据免受丢失或损坏,也能确保恢复数据的可靠性和完整性。本文将重点讨论MySQL和PostgreSQL两种主流关系型数据库系统的数据安全性和备份策略。一、数据安全性方面:(一)用户权

学习Go语言中的数据库函数并实现PostgreSQL数据的增删改查操作学习Go语言中的数据库函数并实现PostgreSQL数据的增删改查操作Jul 31, 2023 pm 12:54 PM

学习Go语言中的数据库函数并实现PostgreSQL数据的增删改查操作在现代的软件开发中,数据库是不可或缺的一部分。Go语言作为一门强大的编程语言,提供了丰富的数据库操作函数和工具包,可以轻松地实现数据库的增删改查操作。本文将介绍如何学习Go语言中的数据库函数,并使用PostgreSQL数据库进行实际的操作。第一步:安装数据库驱动程序在Go语言中,每个数据库

如何在PHP编程中使用PostgreSQL数据库?如何在PHP编程中使用PostgreSQL数据库?Jun 12, 2023 am 09:27 AM

随着数据库技术的发展,数据库管理系统也呈现出多种多样的选择,开发人员可以根据自己的需求和喜好选择最适合自己的数据库。而PostgreSQL作为一种先进的开源关系型数据库系统,越来越受到开发人员的关注和使用。那么,在PHP编程中如何使用PostgreSQL数据库呢?一、安装和配置PostgreSQL数据库在使用PostgreSQL之前,需要先安装和配置它。首先

连接linux工具有哪些连接linux工具有哪些Apr 24, 2022 pm 06:15 PM

连接工具有:1、Xshell,可用于Win界面下远程连接linux服务器;2、secureCRT,一款用于连接运行包括UNIX和VMS的工具;3、PuTTY,可远程连接服务器,支持SSH、Telnet等协议的连接;4、MobaXterm等。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment