Ocorreu um erro de handshake ao tentar atualizar um pacote

0

Eu recebo a seguinte saída ao executar sudo apt-get update :

Ign https://repo.varnish-cache.org trusty Release   
Ign https://repo.varnish-cache.org trusty/varnish-4.0 amd64 Packages/DiffIndex
Ign https://repo.varnish-cache.org trusty/varnish-4.0 i386 Packages/DiffIndex
Ign https://repo.varnish-cache.org trusty/varnish-4.0 Translation-en_US        
Ign https://repo.varnish-cache.org trusty/varnish-4.0 Translation-en           
Err https://repo.varnish-cache.org trusty/varnish-4.0 amd64 Packages           
  gnutls_handshake() failed: Handshake failed
Err https://repo.varnish-cache.org trusty/varnish-4.0 i386 Packages            
  gnutls_handshake() failed: Handshake failed
Fetched 5,403 kB in 10s (506 kB/s)                                             
W: Failed to fetch https://repo.varnish-cache.org/ubuntu/dists/trusty/varnish-4.0/binary-amd64/Packages  gnutls_handshake() failed: Handshake failed

W: Failed to fetch https://repo.varnish-cache.org/ubuntu/dists/trusty/varnish-4.0/binary-i386/Packages  gnutls_handshake() failed: Handshake failed

E: Some index files failed to download. They have been ignored, or old ones used instead.

O que significa e como posso corrigir isso?

    
por Lance Holland 05.09.2017 / 17:44

2 respostas

3

Esse é um erro de SSL.

Se você acessar a página inicial:

% bl0ck_qu0te%

Se você acessar a página inicial: link

Você verá

% bl0ck_qu0te%

E percorrer a página evapentualmente leva a

link

Então, na linha de baixo, você tem um erro ssl, pois o repositório não existe mais e você precisa atualizar seus repositórios;)

    
por Panther 05.09.2017 / 19:38
3

Para corrigir, remova o antigo Cache de verniz e a fonte de repositório de APT quebrada:

sudo apt-get purge varnish

sudo rm /etc/apt/sources.list.d/varnish*

sudo apt-key list | grep "varnish"

^ (encontre o GPG 'KeyID' à esquerda que corresponde ao cache de verniz)

sudo apt-key del (Varnish-Cache GPG KeyID from above)

Execute o apt update - você não verá mais erros:

sudo apt-get update

Se você deseja instalá-lo novamente via repositório oficial do Ubuntu:

sudo apt-get install varnish

Veja: link


Se você deseja instalar a versão mais recente ou dev, siga este guia (ou mais recente):

= > link

    
por bshea 27.09.2017 / 18:24