命令报错: sudo apt update Hit:1 http://mirrors.aliyun.com/ubuntu bionic InRelease Hit:2 http://mirrors.aliyun.com/ubuntu bionic-updates InRelease Hit:3 http://mirrors.aliyun.com/ubuntu bionic-backports InRelease Hit:4 http://mirrors.aliyun.com/ubuntu bionic-security InRelease Get:5 https://mirrors.aliyun.com/docker-ce/linux/ubuntu bionic InRelease [64.4 kB] Ign:6 https://pkg.jenkins.io/debian-stable binary/ InRelease Get:7 https://pkg.jenkins.io/debian-stable binary/ Release [2,044 B] Get:8 https://pkg.jenkins.io/debian-stable binary/ Release.gpg [833 B] Ign:8 https://pkg.jenkins.io/debian-stable binary/ Release.gpg Reading package lists... Done W: GPG error: https://pkg.jenkins.io/debian-stable binary/ Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 5BA31D57EF5975CA E: The repository 'http://pkg.jenkins.io/debian-stable binary/ Release' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details.
时间: 2023-08-13 18:06:46 浏览: 412
sudo apt-get update时的问题
这个错误是因为缺少 Jenkins 仓库的公钥。您可以按照以下步骤导入公钥并解决问题:
1. 打开终端。
2. 下载 Jenkins 的公钥。输入以下命令并按回车:
```
wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add -
```
3. 重新运行 `sudo apt update` 命令以更新软件包列表。
现在,您应该能够成功更新软件包列表,然后继续安装 Jenkins。请尝试执行之前的步骤,并告诉我是否还遇到问题。
阅读全文