Quebrado 'apt-get update'

1

Eu tenho um problema, que ao executar $sudo apt-get update , fica com algo parecido com isto:

Ign https://apt.dockerproject.org ubuntu-trusty InRelease                      
Ign https://download.docker.com trusty InRelease                               
Err http://dl.google.com stable InRelease                                      

Err http://dl.google.com stable Release.gpg                                    
  Unable to connect to 10.11.55.xxx:3142:
Err http://security.ubuntu.com trusty-security InRelease                       

Err http://security.ubuntu.com trusty-security Release.gpg                     
  Unable to connect to 10.11.55.xxx:3142:
Err http://us.archive.ubuntu.com trusty InRelease                              

Err http://us.archive.ubuntu.com trusty-updates InRelease                      

Err http://us.archive.ubuntu.com trusty-backports InRelease

Err http://packages.cloud.google.com cloud-sdk-trusty InRelease

Err http://us.archive.ubuntu.com trusty Release.gpg
  Unable to connect to 10.11.55.xxx:3142:
Err http://packages.cloud.google.com cloud-sdk-trusty Release.gpg
  Unable to connect to 10.11.55.xxx:3142:
Err http://us.archive.ubuntu.com trusty-updates Release.gpg
  Unable to connect to 10.11.55.xxx:3142:
Err http://us.archive.ubuntu.com trusty-backports Release.gpg
  Unable to connect to 10.11.55.xxx:3142:

E leva muito tempo para falhar. Eu suspeito que é alguma configuração de rede (meu IP costumava ser 10.11.55.YY, mas mudou-se para uma rede diferente).

Eu notei o problema ao tentar instalar o docker, mas não tenho certeza se ele teve que fazer alguma coisa com esse problema.

Quaisquer sugestões sobre como resolver este problema?

    
por Xocoatzin 11.03.2017 / 03:10

1 resposta

0

O problema não tem nada a ver com o docker.

Descobrimos que o APT tinha um proxy configurado. Não tenho certeza de como chegou lá, talvez a TI tenha colocado isso em primeiro lugar. Quando mudei para uma sub-rede diferente, o proxy quebrou (já que não seria mais acessível).

A solução foi remover a seguinte linha de /etc/apt/apt.conf.d/90-apt-proxy.conf :

Acquire::http::Proxy "http://10.11.55.xxx:3142"

Obrigado ao @steeldriver pelos ponteiros.

    
por Xocoatzin 13.03.2017 / 17:37