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. maven中pom文件配置解决资源文件的编码问题

    <build> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId& ...

  2. 一步一步实现HTTP服务器-开篇

    缘起 翻开清单,一条条计划一直列在那里,一天又一天,不知道什么时候写下了它,也知不道什么时候完成它,它一直在那静静的等待着. 静下心来,反思自己,才发现自己是多么的无知,多么的没有毅力.设定了无数目标 ...

  3. js术语扫盲贴:XHR、RegExp、call-apply、prototype

    (1) XHR:xml httprequestXHR注入:XHR 注入技术是通过XMLHttpRest来获取javascript的.但与eval不同的是,该机制是通过创建一个script的DOM元素, ...

  4. js中闭包来实现bind函数的一段代码的分析

    今天研究了一下bind函数,发现apply和call还可以有这样的妙用,顺便巩固复习了闭包. var first_object = { num: 42 }; var second_object = { ...

  5. Python反序列化 pickle

    # 若需要处理更复杂的数据, 用pickle. pickle只有在Python里能用, 其它语言不行. # 序列化. import pickle def sayhi(name): print('hel ...

  6. 深入理解Java:内省(Introspector)

    深入理解Java:内省(Introspector) 内省(Introspector) 是Java 语言对 JavaBean 类属性.事件的一种缺省处理方法. JavaBean是一种特殊的类,主要用于传 ...

  7. java.lang.IllegalArgumentException异常 配置文件的问题

    java.lang.IllegalArgumentException: org.hibernate.hql.internal.ast.QuerySyntaxException: Student is ...

  8. golang sync/atomic

    刚刚学习golang原子操作处理的时候发现github上面一个比较不错的golang学习项目 附上链接:https://github.com/polaris1119/The-Golang-Standa ...

  9. JAVA中正则表达式总结

    昨天,我的朋友请教我正则表达式.我也好久没有写过正则表达式了,昨天刚好看了下如鹏网创始人杨中科老师关于正则表达式的讲解.使我加深了正则表达式的印像.现我把他总结下: 许多语言,包括Perl.PHP.P ...

  10. Django 项目搭建(ubuntu系统)

    1 环境搭建 sudo apt-get install python3-pip 安装pip3 sudo pip3 install virtualenv 安装虚拟环境,这里展示virtualenv vi ...