Erro de pacotes quebrados ao instalar o zookeeper-server

3

Estou executando o Ubuntu 14.04 LTS (Trusty) e estava tentando instalar o Cloudera Hadoop com o Yarn seguindo este tutorial .

Nas opções, escolho To add the CDH 5 repository: e url personalizado para trusty OS. Então eu instalei o Zookeeper, mas ao instalar o Zookeeper-Server, ele está me dando o seguinte erro:

$    sudo apt-get install zookeeper-server
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 zookeeper-server : Depends: zookeeper (= 3.4.5+cdh5.3.2+83-1.cdh5.3.2.p0.17~trusty-cdh5.3.2) but 3.4.5+dfsg-1 is to be installed
E: Unable to correct problems, you have held broken packages.

Arquivo: /etc/apt/sources.list

$ cat /etc/apt/sources.list
# deb cdrom:[Ubuntu 14.04 LTS _Trusty Tahr_ - Release amd64 (20140417)]/ trusty main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://download.nus.edu.sg/mirror/ubuntu/ trusty main restricted
deb-src http://download.nus.edu.sg/mirror/ubuntu/ trusty main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://download.nus.edu.sg/mirror/ubuntu/ trusty-updates main restricted
deb-src http://download.nus.edu.sg/mirror/ubuntu/ trusty-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://download.nus.edu.sg/mirror/ubuntu/ trusty universe
deb-src http://download.nus.edu.sg/mirror/ubuntu/ trusty universe
deb http://download.nus.edu.sg/mirror/ubuntu/ trusty-updates universe
deb-src http://download.nus.edu.sg/mirror/ubuntu/ trusty-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://download.nus.edu.sg/mirror/ubuntu/ trusty multiverse
deb-src http://download.nus.edu.sg/mirror/ubuntu/ trusty multiverse
deb http://download.nus.edu.sg/mirror/ubuntu/ trusty-updates multiverse
deb-src http://download.nus.edu.sg/mirror/ubuntu/ trusty-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://download.nus.edu.sg/mirror/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://download.nus.edu.sg/mirror/ubuntu/ trusty-backports main restricted universe multiverse

deb http://download.nus.edu.sg/mirror/ubuntu/ trusty-security main restricted
deb-src http://download.nus.edu.sg/mirror/ubuntu/ trusty-security main restricted
deb http://download.nus.edu.sg/mirror/ubuntu/ trusty-security universe
deb-src http://download.nus.edu.sg/mirror/ubuntu/ trusty-security universe
deb http://download.nus.edu.sg/mirror/ubuntu/ trusty-security multiverse
deb-src http://download.nus.edu.sg/mirror/ubuntu/ trusty-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu trusty partner
# deb-src http://archive.canonical.com/ubuntu trusty partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
deb http://extras.ubuntu.com/ubuntu trusty main
deb-src http://extras.ubuntu.com/ubuntu trusty main

E também:

$ cat /etc/apt/sources.list.d/*
deb [arch=amd64] http://archive.cloudera.com/cdh5/ubuntu/trusty/amd64/cdh trusty-cdh5 contrib
deb-src http://archive.cloudera.com/cdh5/ubuntu/trusty/amd64/cdh trusty-cdh5 contrib

deb http://toolbelt.heroku.com/ubuntu ./
deb http://toolbelt.heroku.com/ubuntu ./
deb http://ppa.launchpad.net/webupd8team/sublime-text-3/ubuntu trusty main
# deb-src http://ppa.launchpad.net/webupd8team/sublime-text-3/ubuntu trusty main
deb http://ppa.launchpad.net/webupd8team/sublime-text-3/ubuntu trusty main
# deb-src http://ppa.launchpad.net/webupd8team/sublime-text-3/ubuntu trusty main

Como gerenciar este problema de pacotes quebrados e instalar o zookeeper com sucesso?

    
por surenyonjan 05.03.2015 / 18:35

1 resposta

3

Ao ler este blog , eu vim a saber que isso não era mais problema de pacotes quebrados.  Para resolver este erro de pacote quebrado:

  1. Desinstale o Zookeeper anterior:

    $ sudo apt-get remove o zookeeper

    $ sudo apt-get purge zookeeper

  2. Novo zookeeper de instalação

    $ sudo apt-get instale o zookeeper

  3. Instalar o Zookeeper Server

    $ sudo apt-get instala zookeeper-server

por surenyonjan 17.03.2015 / 20:15

Tags