为 Artifactory debian repo 添加 GPG 密钥

为 Artifactory debian repo 添加 GPG 密钥

我需要将来自artifactory的自定义debian包添加到我的服务器。

问题是我设法上传了包裹并对其进行了签名,但当sudo apt-get update我收到

W: GPG error: https://mycompany.jfrog.io/mycompany/deb-release-local bionic Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 782E27A43CDD3263

现在,gpg 密钥(pub 和 priv)已添加到artifactory,尽管我还没有找到将其添加到本地 apt 的方法。我尝试过:

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 782E27A43CDD3263

但没有成功。我尝试更改密钥服务器以指向我的artifactory端点,但超时了。

答案1

由于密钥对是我创建的,我只需通过运行以下命令添加我的密钥:

cat mykey | apt-key add -

然后运行apt-get update

相关内容