2016-12-22 13 views
2

Когда я устанавливаю jenkins-plugin как «git-plugin», тогда jenkins перенаправляет мои запросы в зеркало ftp.halifax.rwth-aachen.de. Но я работаю за корпоративным прокси-сервером, который запрещает запросы на URL-адрес, содержащий слово «ftp».Как изменить зеркало Дженкинса, когда прокси запрещает ключевое слово ftp

Есть ли способ выбрать или отключить зеркало при загрузке плагинов для дженкинсов? У Jenkins нет проблем с установкой плагинов с сайтов, которые не содержат «ftp».

Здесь ошибка из Дженкинс срубы вид:

Dez 22, 2016 3:46:54 PM INFORMATION hudson.model.UpdateCenter$DownloadJob run 
Starting the installation of Git client plugin on behalf of admin-ci 
Dez 22, 2016 3:46:54 PM SCHWERWIEGEND hudson.model.UpdateCenter$DownloadJob run 
Failed to install Git client plugin 
hudson.util.IOException2: Failed to download from http://updates.jenkins-ci.org/download/plugins/git-client/2.1.0/git-client.hpi (redirected to: http://ftp.halifax.rwth-aachen.de/jenkins/plugins/git-client/2.1.0/git-client.hpi) 
    at hudson.model.UpdateCenter$UpdateCenterConfiguration.download(UpdateCenter.java:1169) 
    at hudson.model.UpdateCenter$DownloadJob._run(UpdateCenter.java:1666) 
    at hudson.model.UpdateCenter$InstallationJob._run(UpdateCenter.java:1864) 
    at hudson.model.UpdateCenter$DownloadJob.run(UpdateCenter.java:1640) 
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) 
    at java.util.concurrent.FutureTask.run(FutureTask.java:266) 
    at hudson.remoting.AtmostOneThreadExecutor$Worker.run(AtmostOneThreadExecutor.java:110) 
    at java.lang.Thread.run(Thread.java:745) 
Caused by: java.io.IOException: Server returned HTTP response code: 403 for URL: http://ftp.halifax.rwth-aachen.de/jenkins/plugins/git-client/2.1.0/git-client.hpi 
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) 
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) 
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) 
    at java.lang.reflect.Constructor.newInstance(Constructor.java:423) 
    at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1926) 
    at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1921) 
    at java.security.AccessController.doPrivileged(Native Method) 
    at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1920) 
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1490) 
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1474) 
    at hudson.model.UpdateCenter$UpdateCenterConfiguration.download(UpdateCenter.java:1121) 
    ... 7 more 
Caused by: java.io.IOException: Server returned HTTP response code: 403 for URL: http://ftp.halifax.rwth-aachen.de/jenkins/plugins/git-client/2.1.0/git-client.hpi 
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1876) 
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1474) 
    at sun.net.www.protocol.http.HttpURLConnection.getHeaderField(HttpURLConnection.java:2982) 
    at java.net.URLConnection.getHeaderFieldLong(URLConnection.java:629) 
    at java.net.URLConnection.getContentLengthLong(URLConnection.java:501) 
    at java.net.URLConnection.getContentLength(URLConnection.java:485) 
    at hudson.model.UpdateCenter$UpdateCenterConfiguration.download(UpdateCenter.java:1120) 
    ... 7 more 

    enter code here 

ответ

0

Я нашел обходной путь:

  1. Скачать плагин прямо из http://mirrors.jenkins-ci.org/plugins/gitlab-plugin/latest/

  2. Загрузите HPI-файл в Дженкинс. Поле загрузки находится в http://host:8080/pluginManager/advanced.

Но это только обходное решение. Я хотел бы получить ответ на мой вопрос: «Есть ли способ выбрать или отключить зеркало при загрузке плагинов для дженкинсов?«

 Смежные вопросы

  • Нет связанных вопросов^_^