Tentando instalar o Varnish no servidor Ubuntu 14.04 LTS

0

Estou tentando instalar o cache Varnish no Ubuntu 14.04 e obter isso:

The following packages have unmet dependencies:
 varnish : Depends: libjemalloc1 (>=2.1.1) but it is not installable
           Depends: gcc but it is not installable
E: Unable to correct problems, you have held broken packages.

Foi assim que eu fiz:

apt-get install apt-transport-https
apt-get install curl
curl https://repo.varnish-cache.org/ubuntu/GPG-key.txt | apt-key add -
echo "deb https://repo.varnish-cache.org/ubuntu/ trusty varnish-4.0" >> /etc/apt/sources.list.d/varnish-cache.list
apt-get update
apt-get install varnish

Acabei de instalar o Trusty em uma VM VMWare para fazer alguns testes com Nginx e Varnish. Alguma idéia de como remediar?

Saída de apt-cache policy libjemalloc1

libjemalloc1:
   Installed: (none)
   Candidate: (none)
   Version table:

Mesma saída com

apt-cache policy gcc

    
por MB34 04.09.2015 / 20:27

1 resposta

1

libjemalloc1 está nos repositórios do universo

sudo apt-add-repository universe

gcc está nos repositórios principais

sudo apt-add-repository main

Depois disso

sudo apt-get update
sudo apt-get install varnish
    
por A.B. 04.10.2015 / 19:40