HDP 2.6 requires libtirpc-devel

个问题,截止 Mustafa Kemal MAYUK 2017年06月30日 06:30 hadoopPowerSystems

Hello,

I am trying to install HDP 2.6 on RHEL 7.2 ppc64le. Installation over ambari fails due to

"Error: Package: hadoop_2_6_0_3_8-hdfs-2.7.3.2.6.0.3-8.ppc64le (HDP-2.6) Requires: libtirpc-devel" error.

 
 
 0
最佳解答

个解答,截止Jay Kumar SenSharma  · 2017年06月30日 06:41

@Mustafa Kemal MAYUK

Yes, the "libtirpc-devel" package is needed by HDP 2.6. You will need to install that package from your OS Base repo.

You can see that this package is available in OS base repo. For example in my case centos7

  1. # yum whatprovides libtirpc-devel
  2. Loaded plugins: fastestmirror
  3. Loading mirror speeds from cached hostfile
  4. libtirpc-devel-0.2.4-0.8.el7.i686 : Development files for the libtirpc library
  5. Repo : base
  6. libtirpc-devel-0.2.4-0.8.el7.x86_64 : Development files for the libtirpc library
  7. Repo : base
  8. libtirpc-devel-0.2.4-0.8.el7_3.i686 : Development files for the libtirpc library
  9. Repo : updates
  10. libtirpc-devel-0.2.4-0.8.el7_3.x86_64 : Development files for the libtirpc library
  11. Repo : updates
  12. libtirpc-devel-0.2.4-0.8.el7_3.x86_64 : Development files for the libtirpc library
  13. Repo : @updates
  14. # cat /etc/redhat-release
  15. CentOS Linux release 7.0.1406 (Core)

.

 
 
 1  隐藏 2 · 分享
 

@Mustafa Kemal MAYUK

For similar discussion on this please refer to: https://community.hortonworks.com/questions/96763/hdp-26-ambari-install-fails-on-rhel-7-on-libtirpc.html

If you are using RHEL7 then you might have to enable the "*-rhel-server-optional" packages.

Please see: https://access.redhat.com/solutions/265523

Winnie Philip Jay Kumar SenSharma ♦ · 2017年08月23日 15:39 0
 

I had the similar problem on RHL7 and HDP2.6 using Ambari2.5. after making below change, the installation progressed. Thanks for the tip!!!!

I enabled 2 optional RHL7 OS packages by running below commands on all nodes.

subscription-manager repos --enable=rhel-7-server-optional-rpms

subscription-manager repos --enable=rhel-7-server-eus-optional-rpms

 

个解答,截止Erkan ŞİRİN · 2018年05月15日 06:05

I have encountered same issue while adding back ex-data node into HDP 2.6 cluster.

Since I have no internet connection I have solved it the following way:

1. Download libtirpc-devel-0.2.4-0.10.el7.x86_64.rpm

from

libtirpc-devel

2. yum install libtirpc-devel-0.2.4-0.10.el7.x86_64.rpm

 
 
 1  隐藏 3 · 分享
 

Thanks!!!!!!!

wget -nv https://rpmfind.net/linux/centos/7.4.1708/os/x86_64/Packages/libtirpc-devel-0.2.4-0.10.el7.x86_64.rpm
yum install libtirpc-devel-0.2.4-0.10.el7.x86_64.rpm -y --skip-broken

 

enabling subscription-manager repos and downloading the rpm . still have dependencies issues

[root@phcv-dlhadoop01 ~]# yum install libtirpc-devel-0.2.4-0.10.el7.x86_64.rpm -y --skip-broken

Loaded plugins: product-id, rhnplugin, search-disabled-repos, subscription-manager
This system is receiving updates from RHN Classic or Red Hat Satellite.
Examining libtirpc-devel-0.2.4-0.10.el7.x86_64.rpm: libtirpc-devel-0.2.4-0.10.el7.x86_64
Marking libtirpc-devel-0.2.4-0.10.el7.x86_64.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package libtirpc-devel.x86_64 0:0.2.4-0.10.el7 will be installed
--> Processing Dependency: libtirpc = 0.2.4-0.10.el7 for package: libtirpc-devel-0.2.4-0.10.el7.x86_64

Packages skipped because of dependency problems:
libtirpc-devel-0.2.4-0.10.el7.x86_64 from /libtirpc-devel-0.2.4-0.10.el7.x86_64

 

个解答,截止chennuri gouri shankar · 2018年02月12日 12:16

wget //ftp.icm.edu.pl/vol/rzm6/linux-slc/centos/7.1.1503/updates/x86_64/Packages/libtirpc-devel-0.2.4-0.8.el7_3.x86_64.rpm

yum install libtirpc-devel-0.2.4-0.8.el7_3.x86_64.rpm -y

This will resolve the issue. We have to do this on all the hosts

 
 
 
 1 · 分享
 
 

个解答,截止Mudit Kumar · 2018年08月11日 20:20

I fixed the issue on RHEL6.9 by installing libtirpc and libtirpc-devel 0.15 and uninstalling libtirpc 0.13.

 
 
 0 · 分享
 
 

个解答,截止Mudit Kumar · 2018年08月11日 18:00

where i can find this package for centos 6.9 ?

 
 
 0 · 分享
 
 

个解答,截止Theresa Xu · 2018年06月05日 13:50

I hit the same problem while installing HDP 2.6.4 on POWER systems. I got over the problem be adding the optional package to the repos. If you have a network or local RHEL repository you need to have the following listed as one of the baseurls:

baseurl=ftp://<userID>:<password>@<ftpHostName>/redhat/release_cds/<rhelRelease>/Server-optional/ppc64le/os/

e.g.:

baseurl=ftp://<userID>:<password>@<ftpHostName>/redhat/release_cds/RHEL-7.4-GA/Server-optional/ppc64le/os/

 
 
 0 · 分享
 
 

个解答,截止Marcelo Natalio Saied · 2018年05月15日 21:06

Thanks!!!!!!!

wget -nv https://rpmfind.net/linux/centos/7.4.1708/os/x86_64/Packages/libtirpc-devel-0.2.4-0.10.el7.x86_64.rpm
yum install libtirpc-devel-0.2.4-0.10.el7.x86_64.rpm -y --skip-broken

HDP 2.6 requires libtirpc-devel的更多相关文章

  1. centos7安装mplayer以及出现的各种问题

    首先,centos7默认的视频播放器基本不能用,这里我们选择mplayer作为视频播放器. 安装的过程,痛并快乐着....... 首先我们去mplayer的官网下载需要的文件,http://www.m ...

  2. 编译安装nginx却requires the PCRE library

    编译安装nginx需要pcre包,未安装会有如下提示: ./configure: error: the HTTP rewrite module requires the PCRE library. Y ...

  3. ORCFILE IN HDP 2: BETTER COMPRESSION, BETTER PERFORMANCE

    ORCFILE IN HDP 2: BETTER COMPRESSION, BETTER PERFORMANCE by Carter Shanklin   The upcoming Hive 0.12 ...

  4. 译:ORCFILE IN HDP 2:更好的压缩,更高的性能

    原文地址: https://hortonworks.com/blog/orcfile-in-hdp-2-better-compression-better-performance/ ORCFILE I ...

  5. Android requires compiler compliance level 5.0 or 6.0. Found '1.4' instead的解决办法

    今天在导入工程进Eclipse的时候竟然出错了,控制台输出的是: [2013-02-04 22:17:13 - takepicture] Android requires compiler compl ...

  6. Full exploitation of a cluster hardware configuration requires some enhancements to a single-system operating system.

    COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION Operating System Desi ...

  7. Error: Bootstrap's JavaScript requires jQuery错误

    引入bootstrap时会出现的问题:boostrap下拉菜单无效,浏览器报Uncaught Error: Bootstrap's JavaScript requires jQuery错误, 解决办法 ...

  8. SIP模块版本错误问题:the sip module implements API v??? but XXX module requires API v???

    系统安装了python 2.7,继续安装PyQt4,于是依次下载sip.pyqt4源码进行安装.用以下代码测试: import PyQt4.QtGui 显示出错.错误信息:the sip module ...

  9. HDP 2.3 Notes

    Hortonworks Data Platform 2.3.4.0-3485 [bug] /usr/hdp/2.3.4.0-3485/zookeeper/bin/zkEnv.sh 26 if [ -z ...

随机推荐

  1. System.nanoTime理解

    JDK1.5之后java中的计时给出了更精确的方法:System.nanoTime(),输出的精度是纳秒级别,这个给一些性能测试提供了更准确的参考. 但是这个方法有个需要注意的地方,不能用来计算今天是 ...

  2. 【转】java中equal与==的区别 其中有个缓冲区,需要注意

    转自http://www.cnblogs.com/dolphin0520/p/3592500.html 在学Java时,可能会经常碰到下面的代码: 1 String str1 = new String ...

  3. 第七章——集成学习和随机森林(Ensemble Learning and Random Forests)

    俗话说,三个臭皮匠顶个诸葛亮.类似的,如果集成一系列分类器的预测结果,也将会得到由于单个预测期的预测结果.一组预测期称为一个集合(ensemble),因此这一技术被称为集成学习(Ensemble Le ...

  4. javascript快速入门之BOM模型—浏览器对象模型(Browser Object Model)

    什么是BOM? BOM是Browser Object Model的缩写,简称浏览器对象模型 BOM提供了独立于内容而与浏览器窗口进行交互的对象 由于BOM主要用于管理窗口与窗口之间的通讯,因此其核心对 ...

  5. pymysql和 SQLAlchemy在python下的使用

    #!/usr/bin/env python # -*- coding:utf-8 -*- from sqlalchemy import create_engine, Table, Column, In ...

  6. 渐进式Web应用(PWA)入门教程(下)

    上篇文章我们对渐进式Web应用(PWA)做了一些基本的介绍. 渐进式Web应用(PWA)入门教程(上) 在这一节中,我们将介绍PWA的原理是什么,它是如何开始工作的. 第一步:使用HTTPS 渐进式W ...

  7. java集合框架之HashMap

    参考http://how2j.cn/k/collection/collection-hashmap/365.html#nowhere HashMap的键值对 HashMap储存数据的方式是-- 键值对 ...

  8. php之array_column 的使用

    听说只有大牛级的高工才知道的函数array_column () 讲真,我才知道. (PHP 5 >= 5.5.0, PHP 7) array_column - 返回数组中指定的一列 说明 arr ...

  9. 数字证书中读取PublicKey

    1. 读取https签发证书中的key 1) 在下面的代码中,是实现读取证书字符串来读取key的,CERTIFICATE 就是一个证书的字符串, 而方法cf.generateCertificate() ...

  10. setUp()和tearDown()函数

    1.什么是setUp()和tearDown()函数? 2.为什么我们要用setUp()和tearDown()函数? 3.我们该怎样用setUp()和tearDown()? 1.什么是setUp()和t ...