我是postgres新手,我需要下载并安装pgcrypto扩展。我在命令下运行,但什么也没有发生:
[root@localhost /]# yum install pgcrypto
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirror.nbrc.ac.in
* extras: mirrors.nhanhoa.com
* updates: mirror.nbrc.ac.in
No package pgcrypto available.
Error: Nothing to do然后,我查看了google上的几个命令,并尝试使用以下命令:
[root@localhost ~]# gppkg -r pgcrypto
-bash: gppkg: command not found我在centos上使用postgres 11.3。请让我知道合适的命令/链接,我可以从那里下载/安装pgcrypto。任何帮助都将不胜感激。
谢谢
发布于 2019-07-04 17:55:08
您可能正在寻找要安装的postgresql11-contrib包:
# yum info postgresql11-contrib
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
* base: centos.mirror.triple-it.nl
* extras: mirror.nforce.com
* updates: centos.mirror.triple-it.nl
Available Packages
Name : postgresql11-contrib
Arch : x86_64
Version : 11.4
Release : 1PGDG.rhel7
Size : 617 k
Repo : pgdg11/7/x86_64
Summary : Contributed source and binaries distributed with PostgreSQL
URL : https://www.postgresql.org/
License : PostgreSQL
Description : The postgresql11-contrib package contains various extension modules that are
: included in the PostgreSQL distribution.https://stackoverflow.com/questions/56883042
复制相似问题