微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

centos7下安装postgresql13

Postgresql13

install

本机环境

[root@sonarqube02 ~]# cat /etc/redhat-release 
CentOS Linux release 7.8.2003 (Core)
[root@sonarqube02 ~]# cat /proc/version 
Linux version 3.10.0-1127.19.1.el7.x86_64 ([email protected]) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ) #1 SMP Tue Aug 25 17:23:54 UTC 2020

1.通过清华大学源yum安装

Index of /postgresql/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror

1.创建repo文件

[root@sonarqube02 ~]# cat /etc/yum.repos.d/postgresql.repo 
[postgresql]
name=postgresql
baseurl=https://mirrors.tuna.tsinghua.edu.cn/postgresql/repos/yum/13/redhat/rhel-7-x86_64/
gpgcheck=1
gpgkey=https://mirrors.tuna.tsinghua.edu.cn/postgresql/repos/yum/RPM-GPG-KEY-PGDG-13

报错1:

Downloading packages:@H_404_19@warning: /var/cache/yum/x86_64/7/postgresql/packages/postgresql13-libs-13.3-1PGDG.rhel7.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 442df0f8: NOKEY

@H_404_19@Public key for postgresql13-libs-13.3-1PGDG.rhel7.x86_64.rpm is not installed

解决1:

指定gpgkey即可

gpgkey=https://mirrors.tuna.tsinghua.edu.cn/postgresql/repos/yum/RPM-GPG-KEY-PGDG-13

2.安装postgresql13-server

[root@sonarqube02 ~]# yum list|grep postgresql13
postgresql13.x86_64                        13.3-1PGDG.rhel7           @postgresql
postgresql13-libs.x86_64                   13.3-1PGDG.rhel7           @postgresql
postgresql13-server.x86_64                 13.3-1PGDG.rhel7           @postgresql
postgresql13-contrib.x86_64                13.3-1PGDG.rhel7           postgresql
postgresql13-devel.x86_64                  13.3-1PGDG.rhel7           postgresql
postgresql13-docs.x86_64                   13.3-1PGDG.rhel7           postgresql
postgresql13-llvmjit.x86_64                13.3-1PGDG.rhel7           postgresql
postgresql13-odbc.x86_64                   13.00.0000-1PGDG.rhel7     postgresql
postgresql13-plperl.x86_64                 13.3-1PGDG.rhel7           postgresql
postgresql13-plpython3.x86_64              13.3-1PGDG.rhel7           postgresql
postgresql13-pltcl.x86_64                  13.3-1PGDG.rhel7           postgresql
postgresql13-test.x86_64                   13.3-1PGDG.rhel7           postgresql

yum makecache
yum -y install postgresql13-server.x86_64

3.启动服务

/usr/pgsql-13/bin/postgresql-13-setup initdb

systemctl enable postgresql-13
systemctl start postgresql-13

4.验证

[root@sonarqube02 ~]# ps -ef|grep postgres
postgres   2384      1  0 Jul30 ?        00:00:00 /usr/pgsql-13/bin/postmaster -D /var/lib/pgsql/13/data/
postgres   2386   2384  0 Jul30 ?        00:00:00 postgres: logger 
postgres   2388   2384  0 Jul30 ?        00:00:00 postgres: checkpointer 
postgres   2389   2384  0 Jul30 ?        00:00:00 postgres: background writer 
postgres   2390   2384  0 Jul30 ?        00:00:00 postgres: walwriter 
postgres   2391   2384  0 Jul30 ?        00:00:00 postgres: autovacuum launcher 
postgres   2392   2384  0 Jul30 ?        00:00:00 postgres: stats collector 
postgres   2393   2384  0 Jul30 ?        00:00:00 postgres: logical replication launcher 

 

2.通过官方二进制包安装

PostgreSQL: Linux downloads (Red Hat family)

1.选择安装包版本

2.copy, paste and run the relevant parts of the setup script:

# Install the repository RPM:
sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm

# Install Postgresql:
sudo yum install -y postgresql13-server

# Optionally initialize the database and enable automatic start:
sudo /usr/pgsql-13/bin/postgresql-13-setup initdb
sudo systemctl enable postgresql-13
sudo systemctl start postgresql-13

test

安装完毕后,系统会创建一个数据库超级用户 postgres,密码为空

1.切换用户

[root@sonarqube02 ~]# cat /etc/passwd|grep postgres
postgres:x:26:26:Postgresql Server:/var/lib/pgsql:/bin/bash

[root@sonarqube02 ~]# sudo -iu postgres
-bash-4.2$ 

[root@sonarqube02 ~]# sudo --help

sudo - execute a command as another user

Options:

-i, --login run login shell as the target user; a command may also be specified

-u, --user=user run command (or edit file) as specified user name or ID

2.这时使用以下命令进入 postgres,输出以下信息,说明安装成功:

-bash-4.2$ psql 
psql (13.3)
Type "help" for help.

postgres=# 

3.输入以下命令退出 Postgresql 提示符:

postgres=# \q

-bash-4.2$ exit
logout
[root@sonarqube02 ~]# 

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐