centos安装psql客户端

前言:postgresql数据库采用docker部署,想在宿主机测试访问或数据库备份,则需要安装postgresql客户端,即psql命令

环境:centos7,x86,yum

下面以 postgresql-11 为例

  • 安装镜像
yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm -y
  • 安装客户端
yum install postgresql11 -y

如果需要postgresql数据库服务,则安装 postgresql11-server

yum install postgresql11-server -y

在这里,我们只需要客户端用于数据库访问连接,那么只需要安装 postgresql11即可,不需要 postgresql11-server

  • 测试

查看psql版本,psql -v
在这里插入图片描述

# 连接数据库测试
psql -U postgres -p 5432 -h 127.0.0.1  

至此,postgresql客户端已安装完毕,这里以 postgresql11 为例,也可以换一个版本,如 postgresql12。11跟12都是大版本,会自动安装该大版本里的最高版本,例如11版本截止目前是 11.20。

在此做个记录,以后方便查阅

你可能感兴趣的:(数据库,centos,postgresql)