安装zookeeper服务器时出现断包错误

n3ipq98p  于 2021-05-30  发布在  Hadoop
关注(0)|答案(1)|浏览(331)

我正在运行Ubuntu14.04 lts(trusty),并试图按照本教程安装ClouderaHadoop with yarn。
在我选择的选项下 To add the CDH 5 repository: 和自定义的url trusty 操作系统。然后我安装了zookeeper,但在安装zookeeper服务器时,它给了我以下错误:

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

juud5qan

juud5qan1#

读了这个博客,我才知道这不是问题更多的坏包。要解决此损坏的包错误,请执行以下操作:
卸载以前的zookeeper:
$sudo获得管理员
$sudo获得管理员
新鲜Zookeeper
$sudo apt安装zookeeper
安装zookeeper服务器
$sudo apt get安装zookeeper服务器

相关问题