jenkins的官方安装文档 中,主要要执行如下四条命令:
1. wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add -
2. sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'
3. sudo apt-get update
4. sudo apt-get install jenkins
其中第一步提示 no valid OpenPGP data found.
把第一条命令拆成两步执行,分别为
1.1 wget -q -O - https://pkg.jenkins.io/debian/jenkins-ci.org.key
将此步骤得到的key保存为这个文件 jenkins-ci.org.key
1.2 sudo apt-key add jenkins-ci.org.key
参考 http://stackoverflow.com/questions/21338721/gpg-no-valid-openpgp-data-found