欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CentOS7下安装PostgreSQL12

程序员文章站 2022-05-01 18:33:07
...

PostgreSQL

下载

官网地址:https://www.postgresql.org/

下载地页面:https://www.postgresql.org/download/linux/redhat/

安装

使用yum命令添加PostgreSQL软件源。

[aaa@qq.com ~] yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm

使用yum命令安装PostgreSQL。

[aaa@qq.com ~] yum install postgresql12
[aaa@qq.com ~] yum install postgresql12-server
[aaa@qq.com ~] yum install postgresql12-contrib

初始化数据库。

[aaa@qq.com ~] /usr/pgsql-12/bin/postgresql-12-setup initdb

配置开机启动与启动

[aaa@qq.com ~] systemctl enable postgresql-12
[aaa@qq.com ~] systemctl start postgresql-12

配置远程访问

修改密码

首先,切换到postgres用户。然后执行修改用户密码SQL语句。其中“postgres”为要修改密码的用户,“123456”为用户的密码。

[aaa@qq.com ~] su - postgres
bash-4.2$ psql -c "alter user postgres with password '123456'"

修改配置文件

打开并编辑文件“/var/lib/pgsql/12/data/postgresql.conf”。将“#listen_addresses = ‘localhost’”改为“listen_addresses = ‘*’”
CentOS7下安装PostgreSQL12
打开并编辑文件“/var/lib/pgsql/12/data/pg_hba.conf”。在文件的末尾添加“host all all 0.0.0.0/0 md5”。
CentOS7下安装PostgreSQL12

安装Python3支持包

如果不需要数据库Python3支持,则忽略该步骤。

[aaa@qq.com ~] yum install postgresql12-plpython3

要使用python扩展,需要打开数据库,执行如下SQL语句。

CREATE extension plpython3u;
相关标签: 安装配置