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

linux 安装postgresql 9.6

程序员文章站 2022-05-27 16:17:41
...

俩大步骤 1)更新yum源 2)安装postgresql9.6 数据库 注意:安装的过程中一路选择 yes

一、跟新yum源

1.查看centos 版本

 rpm -q centos-release

2.根据版本更新yum源

CentOS 5

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

或者

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

CentOS 6

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

或者

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

CentOS 7

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

或者

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

我的版本是centos7 所以我用

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

3.生成yum缓存

yum makecache

4.更新系统(生成了缓存,可以不用更新)

yum -y update

二、安装数据库

下载

1.创建PostgreSQL9.6的yum源文件

yum install https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm

2.安装PostgreSQL客户端

yum install postgresql96  

3.安装PostgreSQL服务端

yum install postgresql96-server

4.安装PostgreSQL拓展包(可选)

yum install postgresql96-devel.x86_64

5.安装PostgreSQL的附加模块(可选)

yum install postgresql96-contrib.x86_64

配置初始化

初始化数据库

/usr/pgsql-9.6/bin/postgresql96-setup initdb

启动postgresql服务,并设置为开机自动启动

systemctl enable postgresql-9.6
systemctl start postgresql-9.6

postgres用户初始配置

安装完成后,操作系统会自动创建一个postgres用户用来管理数据库,为其初始化密码(输入命令后连输2次密码):

passwd postgres

数据库初始配置

使用数据库自带的postgres用户登录数据库,并为其赋予密码

su - postgres
psql -U postgres
alter user postgres with password '我的密码123456';

配置远程连接

先修改pg_hba.conf 修改一处(一般该文件放置在 /var/lib/pgsql/9.6/data)
先找到pg_hba.conf

find / -name 'pg_hba.conf'

在最后添加允许访问IP段(全网段可访问)

host all all 0.0.0.0/0 md5

后修改 postgresql.conf 修改两处(一般该文件放置在 /var/lib/pgsql/9.6/data)
先找到 postgresql.conf

find / -name 'postgresql.conf'

一找到用户参数listen_addresses(取消掉注释),改成下面样式:

listen_addresses = '*'

二启用密码验证

#password_encryption = on 修改为 password_encryption = on  (把前面的#号去掉)

重启数据库

systemctl restart postgresql-9.6 

之后就可以使用Navicat来连接 PostgreSql 了

相关标签: postgreSQL