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

CentOS7 安装 PostgreSQL11的方法步骤

程序员文章站 2024-01-19 16:14:46
centos 7 安装 postgresql 11 postgresql: the world's most advanced open source relatio...

centos 7 安装 postgresql 11

CentOS7 安装 PostgreSQL11的方法步骤

postgresql: the world's most advanced open source relational database

为了学一学号称世界上最先进的开源关系型数据库,就要先安装,接下来就在centos 7上安装postgresql 11。

环境

阿里云 centos 7.3.1611

postgresql 11

postgresql

postgresql是以加州大学伯克利分校计算机系开发的 postgres,现在已经更名为postgresql,版本 4.2为基础的对象关系型数据库管理系统(ordbms)。postgresql支持大部分 sql标准并且提供了许多其他现代特性:复杂查询、外键、触发器、视图、事务完整性、mvcc。同样,postgresql 可以用许多方法扩展,比如, 通过增加新的数据类型、函数、操作符、聚集函数、索引。免费使用、修改、和分发 postgresql,不管是私用、商用、还是学术研究使用。

postgresql从9.3版本开始内置了json数据类型,而9.4开始支持jsonb,标志着postgresql实际上已经是一个关系型数据库和nosql数据库的结合体。虽然postgresql还定位在关系型数据库,但是近几次更新postgresql的nosql性能飙升甚至超过mongodb。

postgresql安装

这里以rpm的方式安装postgresql 11

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

# 安装
yum -y install postgresql11 postgresql11-server postgresql11-libs

# 初始化数据库
/usr/pgsql-11/bin/postgresql-11-setup initdb

# 设置开机自启动postgresql和启动服务
systemctl enable postgresql-11
systemctl start postgresql-11
systemctl status postgresql-11
## 看到控制台输出的active后有running的字样说明启动完成

postgresql连接

# 登录数据库,这里切换账号postgres
su - postgres
psql

# navicat连接postgresql
# 这里要修改配置文件postgresql.conf
find / -name postgresql.conf
vi /var/lib/pgsql/11/data/postgresql.conf

# 找到listen_address那里,解开注释并修改引号内localhost的值为*
listen_address="*"

# 保存并退出,重启postgresql服务
systemctl restart postgresql-11

# 阿里云安全组规则配置 -> 快速添加安全组规则 -> 选中postgresql并添加

# 在navicat连接,如果不修改localhost为*,navicat连接会提示错误“connection refuse”

# 我在这里修改了postgres用户的密码,步骤如下:
## 切换用户后进入psql
su - postgres
psql
## 修改密码
alter user postgres password '密码'

CentOS7 安装 PostgreSQL11的方法步骤

CentOS7 安装 PostgreSQL11的方法步骤

CentOS7 安装 PostgreSQL11的方法步骤

连接成功!

CentOS7 安装 PostgreSQL11的方法步骤

至此,postgresql搭建完成,windows平台下的postgresql搭建比较简单。接下来,学postgresql!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。