There were errors checking the update sites: SocketException: java.security.NoSuchAlgorithmException

插件管理页面提示:There were errors checking the update sites:IOException:Unable to tunnel through proxy.Proxy returins “HTTP/1.1 400”

网上查到的解决方案:
进入插件管理->Advanced,修改Update Site的URL,
默认是https://updates.jenkins.io/update-center.json。
将https改为http,修改完成,submit,然后重启Jenkins。
但是亲测问题没有解决。

本人成功的解决方案如下:

cd ~/.jenkins/updates
sed -i 's/http:\/\/updates.jenkins-ci.org\/download/https:\/\/mirrors.tuna.tsinghua.edu.cn\/jenkins/g' default.json && sed -i 's/http:\/\/www.google.com/https:\/\/www.baidu.com/g' default.json

然后重启jenkins,问题解决。

systemctl restart jenkins

猜你喜欢

转载自blog.csdn.net/qq_27577263/article/details/125914010