Linux yum安装postgresql出现Bad GPG signature问题的解决方法

本站所有内容来自互联网收集,仅供学习和交流,请勿用于商业用途。如有侵权、不妥之处,请第一时间联系我们删除!Q群:迪思分享

免费资源网 – https://freexyz.cn/

官方文档:https://www.postgresql.org/download/linux/redhat/

sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm sudo yum install -y postgresql12-server sudo /usr/pgsql-12/bin/postgresql-12-setup initdb sudo systemctl enable postgresql-12 sudo systemctl start postgresql-12

安装官方文档操作执行如下命令:

sudo yum install -y postgresql12-server

提示找不到,此时需要进行如下操作:

# 查找repo文件,复制pgdg-redhat-all.repo这个文件名 ls -l /etc/yum.repos.d/

Linux yum安装postgresql出现Bad GPG signature问题的解决方法插图

# 编辑这个配置文件,将刚刚复制的文件名添加进去 vim /etc/yum/pluginconf.d/releasever_adapter.conf

Linux yum安装postgresql出现Bad GPG signature问题的解决方法插图1

继续执行:sudo yum install -y postgresql12-server

出现错误:Error: Failed to download metadata for repo pgdg-common: repomd.xml GPG signature verification error: Bad GPG signature

此时只需要修改安装命令即可:

sudo yum install -y –nogpgcheck postgresql12-server


© 版权声明
THE END
★喜欢这篇文章吗?喜欢的话,麻烦动动手指支持一下!★
点赞13 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容