安装zookeeper-server时出现软件包损坏

时间:2015-03-05 11:05:38

标签: hadoop cloudera apache-zookeeper apt cloudera-cdh

我正在运行Ubuntu 14.04 LTS(Trusty),并尝试按照this教程安装Cloudera Hadoop with Yarn。

在选项下,我为To add the CDH 5 repository:操作系统选择trusty和自定义网址。然后我安装了Zookeeper,但在安装Zookeeper-Server时,它给了我以下错误:

$    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.

文件:/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

还有:

$ 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

如何管理这个破损的软件包问题并成功安装zookeeper?

1 个答案:

答案 0 :(得分:1)

在阅读此blog时,我发现这不是更多破损包的问题。  解决此破坏的包错误:

  1. 卸载以前的Zookeeper:

    $ sudo apt-get remove zookeeper

    $ sudo apt-get purge zookeeper

  2. 全新安装Zookeeper

    $ sudo apt-get install zookeeper

  3. 安装Zookeeper Server

    $ sudo apt-get install zookeeper-server