<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Is there a way by which we can find the dependent packages of hadoop and OS/Environments? in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-there-a-way-by-which-we-can-find-the-dependent-packages/m-p/194554#M62194</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/3418/jsensharma.html" nodeid="3418"&gt;@Jay SenSharma&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/3418/jsensharma.html" nodeid="3418"&gt;&lt;/A&gt;Thanks for it. And is there any other way round as well? Like for an particular rpmlib, can we find the list of HDP packages as well?&lt;/P&gt;</description>
    <pubDate>Thu, 01 Jun 2017 22:52:07 GMT</pubDate>
    <dc:creator>tsk</dc:creator>
    <dc:date>2017-06-01T22:52:07Z</dc:date>
    <item>
      <title>Is there a way by which we can find the dependent packages of hadoop and OS/Environments?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-there-a-way-by-which-we-can-find-the-dependent-packages/m-p/194551#M62191</link>
      <description>&lt;P&gt;Is there a command or tool by which we can check the list of dependent libraries or files between hadoop and OS(environment)?&lt;/P&gt;&lt;P&gt;For eg: When we install ambari on RHEL, we have to manually install "libtirpc-devel". Thusa, is there a way by which we can check the hadoop packages that are dependent on "libtirpc-devel".&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 21:28:37 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-there-a-way-by-which-we-can-find-the-dependent-packages/m-p/194551#M62191</guid>
      <dc:creator>tsk</dc:creator>
      <dc:date>2017-06-01T21:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way by which we can find the dependent packages of hadoop and OS/Environments?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-there-a-way-by-which-we-can-find-the-dependent-packages/m-p/194552#M62192</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/17655/tkandasamy.html" nodeid="17655"&gt;@Tamil Selvan K&lt;/A&gt;&lt;/P&gt;&lt;P&gt;We can query the depepdencies using "repoquery" which is available as part of package "yum-utils"

&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;# yum install yum-utils -y
          And then you can try something like this. 
# for i in `rpm -qa | grep hadoop` ; do echo "Package [$i]:"; rpm -q --requires $i ; echo ; done&lt;/PRE&gt;&lt;P&gt;
&lt;STRONG&gt;Example:  For ambari dependencies on CentOS6&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;for i in `rpm -qa | grep ambari-server` ; do echo "Package [$i]:"; rpm -q --requires $i ; echo ; done
Package [ambari-server-2.5.0.3-7.x86_64]:
postgresql-server &amp;gt;= 8.1
openssl  
python &amp;gt;= 2.6
/bin/sh  
/bin/sh  
/bin/sh  
/bin/sh  
rpmlib(PartialHardlinkSets) &amp;lt;= 4.0.4-1
rpmlib(FileDigests) &amp;lt;= 4.6.0-1
rpmlib(PayloadFilesHavePrefix) &amp;lt;= 4.0-1
rpmlib(CompressedFileNames) &amp;lt;= 3.0.4-1
rpmlib(PayloadIsXz) &amp;lt;= 5.2-1&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 21:48:32 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-there-a-way-by-which-we-can-find-the-dependent-packages/m-p/194552#M62192</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2017-06-01T21:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way by which we can find the dependent packages of hadoop and OS/Environments?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-there-a-way-by-which-we-can-find-the-dependent-packages/m-p/194553#M62193</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/17655/tkandasamy.html" nodeid="17655"&gt;@Tamil Selvan K&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You might also want to try the following using "--tree-requiers" to see dependency tree.&lt;/P&gt;&lt;PRE&gt;# repoquery --tree-requires --recursive --resolve ambari-server&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 22:05:49 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-there-a-way-by-which-we-can-find-the-dependent-packages/m-p/194553#M62193</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2017-06-01T22:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way by which we can find the dependent packages of hadoop and OS/Environments?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-there-a-way-by-which-we-can-find-the-dependent-packages/m-p/194554#M62194</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/3418/jsensharma.html" nodeid="3418"&gt;@Jay SenSharma&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/3418/jsensharma.html" nodeid="3418"&gt;&lt;/A&gt;Thanks for it. And is there any other way round as well? Like for an particular rpmlib, can we find the list of HDP packages as well?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 22:52:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-there-a-way-by-which-we-can-find-the-dependent-packages/m-p/194554#M62194</guid>
      <dc:creator>tsk</dc:creator>
      <dc:date>2017-06-01T22:52:07Z</dc:date>
    </item>
  </channel>
</rss>

