복붙노트

[HADOOP] 얌 하둡을 설치 오류를 찾을 수 없습니다 CentOS는

HADOOP

얌 하둡을 설치 오류를 찾을 수 없습니다 CentOS는

나는 가상 머신에 인형에 대한 책 하둡에 나와있는 지침에 따라 하둡 환경을 설정하려합니다.

단계 중 하나는 다음과 같은 코드를 나타냅니다 -

yum install hadoop\* mahout\* oozie\* hbase\* pig\* hive\* zookeeper\* hue\*

나는 다음과 같은 오류가 있음을 실행하면 -

[root@localhost Desktop]# yum install hadoop\*
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
 * base: centos.mirror.crucial.com.au
 * extras: centos.mirror.crucial.com.au
 * updates: centos.mirror.nsw.au.glovine.com.au
base                                                     | 3.7 kB     00:00     
extras                                                   | 3.4 kB     00:00     
updates                                                  | 3.4 kB     00:00     
Setting up Install Process
No package hadoop* available.
Error: Nothing to do

모든 하둡, 사육사와 색상 중 I를 찾을 수 없습니다 패키지를 말하는 오류가 발생했습니다. 나는 그 미러 사이트에 보니 그 하둡가 존재하지 보여요. 다른 위치에 거울을 강제 할 수있는 방법이 있습니까?

편집하다 -

나는 다음과 같은 명령을 사용하여 REPO를 얻기 위해 명령을 시도했다 아래에 지적한 바와 같이 -

wget -O /etc/yum.repos.d/bigtop.repo http://archive.apache.org/dist/bigtop/bigtop-1.0.0/repos/centos6/bigtop.repo

다음 연결 거부 오류를 던지고있는 -

[root@localhost Desktop]# wget -O /etc/yum.repos.d/bigtop.repo http://www.apache.org/dist/bigtop/bigtop-1.0.0/repos/centos6/bigtop.repo
--2015-12-30 05:03:09--  http://www.apache.org/dist/bigtop/bigtop-1.0.0/repos/centos6/bigtop.repo
Resolving www.apache.org... 88.198.26.2, 140.211.11.105, 2a01:4f8:130:2192::2
Connecting to www.apache.org|88.198.26.2|:80... failed: Connection refused.
Connecting to www.apache.org|140.211.11.105|:80... failed: Connection refused.
Connecting to www.apache.org|2a01:4f8:130:2192::2|:80... failed: Network is unreachable.

마찬가지로 나는 CDH 시도했던 하나를 클릭 user1862493으로 지적 설치하고 나는 다음과 같은 오류를 얻고있다

[root@localhost Desktop]# wget https://archive.cloudera.com/cdh5/one-click-install/redhat/6/x86_64/cloudera-cdh-5-0.x86_64.rpm
--2015-12-30 05:07:49--  https://archive.cloudera.com/cdh5/one-click-install/redhat/6/x86_64/cloudera-cdh-5-0.x86_64.rpm
Resolving archive.cloudera.com... 23.235.41.167
Connecting to archive.cloudera.com|23.235.41.167|:443... failed: Connection refused.

냠 업데이트는 괜찮 았는데 그래서 VM, 어떤 도움 내에 인터넷인가?

해결법

  1. ==============================

    1.먼저 저장소를 추가해야합니다.

    먼저 저장소를 추가해야합니다.

    wget https://archive.cloudera.com/cdh5/one-click-install/redhat/6/x86_64/cloudera-cdh-5-0.x86_64.rpm
    
    yum --nogpgcheck localinstall cloudera-cdh-5-0.x86_64.rpm
    
     yum clean all
    

    그런 다음 하둡 구성 요소를 설치하려고합니다.

    참고 http://www.cloudera.com/content/www/en-us/documentation/enterprise/latest/topics/cdh_ig_cdh5_install.html#topic_4_4_1_unique_2__p_31_unique_2

  2. from https://stackoverflow.com/questions/34521986/yum-install-hadoop-not-found-error-centos by cc-by-sa and MIT license