通过代理在Ubuntu上安装Heroku Toolbelt

时间:2012-11-15 23:32:06

标签: ubuntu heroku-toolbelt

我试图在通过代理连接到互联网的Ubuntu机器上安装Heroku Toolbelt。我对Ubuntu及其设置很陌生,但我设法与互联网连接良好。互联网似乎工作正常,只需浏览并通过apt-get获取更新总是成功的,curl命令会返回预期的内容。

当我尝试在Heroku Toolbelt网站上运行命令时:

wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh

我收到了一些错误:

me@mypc-vb:~/Documents/stuff$ wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh
This script requires superuser access to install apt packages.
You will be prompted for your password by sudo.
[sudo] password for hsiehbe: 
--2012-11-15 15:09:46--  https://toolbelt.heroku.com/apt/release.key
Resolving toolbelt.heroku.com... failed: Name or service not known.
wget: unable to resolve host address `toolbelt.heroku.com'
gpg: no valid OpenPGP data found.
Ign http://us.archive.ubuntu.com oneiric InRelease
Ign http://security.ubuntu.com oneiric-security InRelease           
Ign http://extras.ubuntu.com oneiric InRelease                       
...
Fetched 12.9 MB in 32s (394 kB/s)                                                                                     
Reading package lists... Done
W: GPG error: http://toolbelt.heroku.com ./ Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY C927EBE00F1B0520
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  foreman heroku libreadline5 libruby1.9.1 ruby1.9.1
Suggested packages:
  ruby1.9.1-examples ri1.9.1 graphviz ruby1.9.1-dev
The following NEW packages will be installed:
  foreman heroku heroku-toolbelt libreadline5 libruby1.9.1 ruby1.9.1
0 upgraded, 6 newly installed, 0 to remove and 27 not upgraded.
Need to get 4,815 kB of archives.
After this operation, 15.9 MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  foreman heroku heroku-toolbelt
E: There are problems and -y was used without --force-yes

最明显的错误可能只是

Resolving toolbelt.heroku.com... failed: Name or service not know.

我错过了什么?

1 个答案:

答案 0 :(得分:8)

我在代理后面安装heroku工具带时遇到了同样的问题:

问题的核心是:

GPG error: http://toolbelt.heroku.com ./ Release: The following
signatures couldn't be verified because the public key is not
available: NO_PUBKEY C927EBE00F1B0520

您会注意到,下次运行apt-get update时,您将获得相同的消息。看来ubuntu无法获取heroku包存储库的公钥。

要克服此问题,您可以手动附加公钥,如下所述: http://en.kioskea.net/faq/809-debian-apt-get-no-pubkey-gpg-error

gpg --keyserver pgpkeys.mit.edu --recv-key  C927EBE00F1B0520 
gpg -a --export C927EBE00F1B0520 | sudo apt-key add -

在此之后,安装脚本将运行正常。