如何用三种方法安装最新的PostgreSql数据库?

发表时间: 2023-05-14 06:59

PostgreSql数据库,也是当下非常流行一款开源的关系型数据库,其性能和稳定性都非常不错,所以,在国内也是有比较多的企业在使用的。当前,官方发布的最新版是15。今天,就给大家讲讲如何在centos7系统中安装PostgreSql数据库。

方法一:使用yum编译包安装。

这种方式安装,比较简单、快捷,所以,使用的人还是比较多的。

  1. 首先,准备一台centos7系统。
  2. 登录centos系统后,根据系统版本和cpu架构,选择下载最新的rpm源。

可以访问:
https://download.postgresql.org/pub/repos/yum/reporpms 页面,找到适合自己系统的rpm源。如centos7系统,x86_64架构,可以选择:
https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm 。

sudo yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
  1. 安装PostgreSql15。
sudo yum install -y postgresql15-server

这样,就可以完成数据库的安装了。但是,有些时候会包libzstd包的版本过低,无法安装的错误。

如果出现如上错误,可以访问:
https://download-ib01.fedoraproject.org/pub/epel/7/x86_64/Packages/l/ 下载libzstd-1.
xxx.rpm、llvmx.x-devel-xxx.rpm、llvmx.x-xxxx.rpm、llvmx.x-libs-xxx.rpm包到机器上。

然后,执行:

yum install libzstd-1.5.5-1.el7.x86_64.rpm -yyum install -y centos-release-scl-rh llvm5.0-*    # 然后,再执行数据库的安装命令  sudo yum install -y postgresql15-server
  1. 初始化数据库。
sudo /usr/pgsql-15/bin/postgresql-15-setup initdb
  1. 可选配置开机自启动。
sudo systemctl enable postgresql-15sudo systemctl start postgresql-15

这种方式,安装数据库很简单。安装成功后,会自动添加postgres用户,切换到这个用户下,就可以进行数据库的相关操作了。

方法二:使用源码包安装。

这种方式,操作步骤也很简单,只是时间会要长一些。

  1. 首先,准备一台centos7系统。
  2. 安装数据库源码包安装方式必须的依赖包。
sudo yum install readline-devel zlib-devel -y
  1. 下载源码包。
# 可以访问:https://www.postgresql.org/ftp/source/ 选择你要的版本源码包wget https://ftp.postgresql.org/pub/source/v15.3/postgresql-15.3.tar.gz
  1. 编译安装。
# 解压下载的包tar -xzvf postgresql-15.3.tar.gz# 进入解压后的文件夹cd postgresql-15.3# 编译与安装./configure --prefix=/opt/install-postgresql	# 该命令是把postgresql安装到了opt目录下的install-postgresql文件夹make worldmake install-world
  1. 初始化和启动数据库。

完成第4步,其实数据库已经装好了。但是,要正常使用数据库,还需要初始化和启动数据库。

adduser postgres	# 添加数据库用户mkdir /opt/install-postgresql/data	# 创建数据库数据文件夹chown -R postgres:postgres /opt/install-postgresql/data/	# 改变数据库数据文件夹的归属用户和用户组/opt/install-postgresql/bin/initdb -D /opt/install-postgresql/data/	#初始化数据库/opt/install-postgresql/bin/pg_ctl -D /opt/install-postgresql/data/ -l logfile start	# 启动数据库/opt/install-postgresql/bin/createdb mydb	# 创建数据库/opt/install-postgresql/bin/psql mydb	# 进入数据库

总体来说,这种方式也比较简单,就是编译的时间长了点。

方法三:使用docker安装。

docker是现在安装服务软件的一个神器,使用docker方式安装数据库,哪就是轻轻松松的事情了。

  1. 首先,准备一台centos7系统。
  2. 在系统中安装docker。
# 使用一键安装命令curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun# 启动dockersystemctl restart docker
  1. 使用docker命令,安装数据库。
docker run -itd --name postgresql -p 5432:5432 -e POSTGRES_PASSWORD=Youpassword postgres

这样,数据库就装好了。

这三种方法安装PostgreSql数据库,都是非常简单的。

#头条创作挑战赛#

#大有学问#