gpg: no valid OpenPGP data found

后端 未结 12 964
南方客
南方客 2020-12-02 16:20

I am trying to install Jenkins on Ubuntu 13.10 and I am getting the above mentioned error when i try to run the following command:

wget -q -O - http://pkg.je         


        
12条回答
  •  再見小時候
    2020-12-02 16:49

    By executing the following command, it will save a jenkins-ci.org.key file in the current working directory:

    curl -O http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key
    

    Then use the following command to add the key file:

    apt-key add jenkins-ci.org.key
    

    If the system returns OK, then the key file has been successfully added.

提交回复
热议问题