<?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: Cloudera Manager Server - &amp;quot;Name or service not known&amp;quot; in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16370#M28387</link>
    <description>&lt;P&gt;arrrgh I am looking into why the error from CM has hadooop instead of hadoop... (blushing)&lt;/P&gt;</description>
    <pubDate>Sun, 03 Aug 2014 18:22:59 GMT</pubDate>
    <dc:creator>gmortiz17</dc:creator>
    <dc:date>2014-08-03T18:22:59Z</dc:date>
    <item>
      <title>Cloudera Manager Server - "Name or service not known"</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16368#M28386</link>
      <description>&lt;P&gt;I am running out of things to try here to finalize the upgrade on the cloudera manager agents. I finally gave up trying to fix it and reinstalled the whole cloudera manager service, to no avail.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;$ rpm -qa 'cloudera-*'&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;cloudera-manager-agent-5.1.1-1.cm511.p0.82.el6.x86_64&lt;/P&gt;&lt;P class="p1"&gt;cloudera-manager-server-db-2-5.1.1-1.cm511.p0.82.el6.x86_64&lt;/P&gt;&lt;P class="p1"&gt;cloudera-manager-repository-5.0-1.noarch #Does this alarm anyone? I uninstalled the repository and reinstalled hoping to get 5.1 version repo but it installed this one again.&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;cloudera-manager-server-5.1.1-1.cm511.p0.82.el6.x86_64&lt;/P&gt;&lt;P class="p1"&gt;cloudera-manager-daemons-5.1.1-1.cm511.p0.82.el6.x86_64&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;$ java -version&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;java version "1.7.0_51"&lt;/P&gt;&lt;P class="p1"&gt;Java(TM) SE Runtime Environment (build 1.7.0_51-b13)&lt;/P&gt;&lt;P class="p1"&gt;Java HotSpot(TM) 64-Bit Server VM (build 24.51-b03, mixed mode)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error happens once I log back into the cloudera manager service to upgrade the cm agents, it fails pretty fast (in a couple of seconds):&lt;/P&gt;&lt;P&gt;Detecting Cloudera Manager Server...&lt;/P&gt;&lt;DIV&gt;&lt;STRONG&gt;BEGIN host -t PTR 10.1.1.191&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;191.1.1.10.in-addr.arpa domain name pointer hadooop-test.in.wellcentive.com.&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;END (0)&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;using hadooop-test.in.wellcentive.com as scm server hostname&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;BEGIN which python&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;/usr/bin/python&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;END (0)&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;BEGIN python -c 'import socket; import sys; s = socket.socket(socket.AF_INET); s.settimeout(5.0); s.connect((sys.argv[1], int(sys.argv[2]))); s.close();' hadooop-test.in.wellcentive.com 7182&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;Traceback (most recent call last):&amp;nbsp;&lt;BR /&gt;File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;&amp;nbsp;&lt;BR /&gt;File "&amp;lt;string&amp;gt;", line 1, in connect&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;socket.gaierror: [Errno -2] Name or service not known&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;END (1)&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;could not contact scm server at hadooop-test.in.wellcentive.com:7182, giving up&amp;nbsp;&lt;BR /&gt;waiting for rollback request&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to replicate that part of the code on the terminal:&lt;/P&gt;&lt;P class="p1"&gt;$ python -c 'import socket; import sys; s = socket.socket(socket.AF_INET); s.settimeout(5.0); s.connect(("hadoop-test.in.wellcentive.com", int(7182))); s.close();'&lt;/P&gt;&lt;P class="p1"&gt;#the line above returns nothing, which indicates success. This is proven by teh code below where I try a fake name in for the hostname.&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;The following is a test to see if I could get it to give me an error.&lt;/P&gt;&lt;P class="p1"&gt;$ python -c 'import socket; import sys; s = socket.socket(socket.AF_INET); s.settimeout(5.0); s.connect(("fakehadoop-test.in.wellcentive.com", int(7182))); s.close();'&lt;/P&gt;&lt;P class="p1"&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in connect&lt;/P&gt;&lt;P class="p1"&gt;socket.gaierror: [Errno -2] Name or service not known&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I see in the logs:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Nothing is revealed in the cloudera-scm-server.log:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;2014-08-03 11:41:52,134&amp;nbsp; INFO [NodeConfiguratorThread-0-0:node.NodeConfiguratorProgress@534] hadoop-test.in.wellcentive.com: Transitioning from EXECUTE_SCRIPT (PT1.043S) to SCRIPT_START&lt;/P&gt;&lt;P class="p1"&gt;2014-08-03 11:41:52,134&amp;nbsp; INFO [NodeConfiguratorThread-0-0:node.NodeConfiguratorProgress@534] hadoop-test.in.wellcentive.com: Transitioning from SCRIPT_START (PT0S) to TAKE_LOCK&lt;/P&gt;&lt;P class="p1"&gt;2014-08-03 11:41:52,135&amp;nbsp; INFO [NodeConfiguratorThread-0-0:node.NodeConfiguratorProgress@534] hadoop-test.in.wellcentive.com: Transitioning from TAKE_LOCK (PT0.001S) to DETECT_ROOT&lt;/P&gt;&lt;P class="p1"&gt;2014-08-03 11:41:52,135&amp;nbsp; INFO [NodeConfiguratorThread-0-0:node.NodeConfiguratorProgress@534] hadoop-test.in.wellcentive.com: Transitioning from DETECT_ROOT (PT0S) to DETECT_DISTRO&lt;/P&gt;&lt;P class="p1"&gt;2014-08-03 11:41:52,135&amp;nbsp; INFO [NodeConfiguratorThread-0-0:node.NodeConfiguratorProgress@534] hadoop-test.in.wellcentive.com: Transitioning from DETECT_DISTRO (PT0S) to DETECT_SCM&lt;/P&gt;&lt;P class="p1"&gt;2014-08-03 11:41:52,135&amp;nbsp; INFO [NodeConfiguratorThread-0-0:node.NodeConfiguratorProgress@499] hadoop-test.in.wellcentive.com: New state is a backward state. Storing failed state&lt;/P&gt;&lt;P class="p1"&gt;2014-08-03 11:41:52,135&amp;nbsp; INFO [NodeConfiguratorThread-0-0:node.NodeConfiguratorProgress@534] hadoop-test.in.wellcentive.com: Transitioning from DETECT_SCM (PT0S) to WAITING_FOR_ROLLBACK&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;cloudera-scm-agent.log shows a similar error to the UI output&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;[02/Aug/2014 23:55:00 +0000] 1718 MonitorDaemon-Reporter throttling_logger ERROR&amp;nbsp; &amp;nbsp; Error sending messages to firehose: mgmt-HOSTMONITOR-f84ed02fa45233b5b3c7d24e567ca229&lt;/P&gt;&lt;P class="p1"&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; File "/usr/lib64/cmf/agent/src/cmf/monitor/firehose.py", line 71, in _send&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; &amp;nbsp; self._port)&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; File "/usr/lib64/cmf/agent/build/env/lib/python2.6/site-packages/avro-1.6.3-py2.6.egg/avro/ipc.py", line 464, in __init__&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; &amp;nbsp; self.conn.connect()&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; File "/usr/lib64/python2.6/httplib.py", line 720, in connect&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; &amp;nbsp; self.timeout)&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; File "/usr/lib64/python2.6/socket.py", line 567, in create_connection&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; &amp;nbsp; raise error, msg&lt;/P&gt;&lt;P class="p1"&gt;error: [Errno 111] Connection refused&lt;/P&gt;&lt;P class="p1"&gt;[03/Aug/2014 00:06:00 +0000] 1718 MonitorDaemon-Reporter throttling_logger ERROR&amp;nbsp; &amp;nbsp; (10 skipped) Error sending messages to firehose: mgmt-HOSTMONITOR-f84ed02fa45233b5b3c7d24e567ca229&lt;/P&gt;&lt;P class="p1"&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; File "/usr/lib64/cmf/agent/src/cmf/monitor/firehose.py", line 71, in _send&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; &amp;nbsp; self._port)&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; File "/usr/lib64/cmf/agent/build/env/lib/python2.6/site-packages/avro-1.6.3-py2.6.egg/avro/ipc.py", line 464, in __init__&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; &amp;nbsp; self.conn.connect()&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; File "/usr/lib64/python2.6/httplib.py", line 720, in connect&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; &amp;nbsp; self.timeout)&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; File "/usr/lib64/python2.6/socket.py", line 567, in create_connection&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp; &amp;nbsp; raise error, msg&lt;/P&gt;&lt;P class="p1"&gt;error: [Errno 111] Connection refused&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. Host File&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;$ cat /etc/hosts&lt;/P&gt;&lt;P class="p1"&gt;127.0.0.1 &amp;nbsp; localhost localhost.localdomain localhost4 localhost4.localdomain4&lt;/P&gt;&lt;P class="p1"&gt;::1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; localhost localhost.localdomain localhost6 localhost6.localdomain6&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;10.1.1.191 hadoop-test.in.wellcentive.com hadoop-test&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;2. Host Answer&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;[geovanie.marquez@hadoop-test ~]$ host -v -t A `hostname`&lt;/P&gt;&lt;P class="p1"&gt;Trying "hadoop-test.in.wellcentive.com"&lt;/P&gt;&lt;P class="p1"&gt;;; -&amp;gt;&amp;gt;HEADER&amp;lt;&amp;lt;- opcode: QUERY, status: NOERROR, id: 36034&lt;/P&gt;&lt;P class="p1"&gt;;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 3, ADDITIONAL: 3&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;;; QUESTION SECTION:&lt;/P&gt;&lt;P class="p1"&gt;;hadoop-test.in.wellcentive.com.INA&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;;; ANSWER SECTION:&lt;/P&gt;&lt;P class="p1"&gt;hadoop-test.in.wellcentive.com.3600 INA10.1.1.191&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;;; AUTHORITY SECTION:&lt;/P&gt;&lt;P class="p1"&gt;in.wellcentive.com.3600INNSx.in.wellcentive.com.&lt;/P&gt;&lt;P class="p1"&gt;in.wellcentive.com.3600INNSy.in.wellcentive.com.&lt;/P&gt;&lt;P class="p1"&gt;in.wellcentive.com.3600INNSdz.in.wellcentive.com.&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;;; ADDITIONAL SECTION:&lt;/P&gt;&lt;P class="p1"&gt;x.in.wellcentive.com. 3600 INA10.1.1.xxx&lt;/P&gt;&lt;P class="p1"&gt;y.in.wellcentive.com.3600INA192.168.xxx.xx&lt;/P&gt;&lt;P class="p1"&gt;z.in.wellcentive.com. 3600INA10.1.1.xxx&lt;/P&gt;&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;Received 171 bytes from 10.1.1.xxx#53 in 0 ms&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;Any Ideas?&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 09:04:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16368#M28386</guid>
      <dc:creator>gmortiz17</dc:creator>
      <dc:date>2022-09-16T09:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Cloudera Manager Server - "Name or service not known"</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16370#M28387</link>
      <description>&lt;P&gt;arrrgh I am looking into why the error from CM has hadooop instead of hadoop... (blushing)&lt;/P&gt;</description>
      <pubDate>Sun, 03 Aug 2014 18:22:59 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16370#M28387</guid>
      <dc:creator>gmortiz17</dc:creator>
      <dc:date>2014-08-03T18:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Cloudera Manager Server - "Name or service not known"</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16452#M28388</link>
      <description>&lt;P&gt;1) Disable IPv6, firewalls, selinux, dns look up is proper&lt;/P&gt;&lt;P&gt;2) Ensure you have sufficient RAM, cores on the CM machines&lt;/P&gt;&lt;P&gt;3) Proper version of java for your CM&lt;/P&gt;&lt;P&gt;4) CM, DB are well connected ??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please provide all the above details&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just increase java memory for CM&lt;/P&gt;&lt;P&gt;$ sudo vi /etc/default/cloudera-scm-server&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2014 12:47:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16452#M28388</guid>
      <dc:creator>narayanab16</dc:creator>
      <dc:date>2014-08-05T12:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Cloudera Manager Server - "Name or service not known"</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16466#M28389</link>
      <description>&lt;P&gt;When following our installation documentation, what step did you reach before discovering things were failing? &amp;nbsp;The requirements section of the installation guide is important to review, espectially the networking &amp;amp; security section.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://docs.cloudera.com"&gt;http://docs.cloudera.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You should not be laying down all the RPMs, and repo should not be installed manually.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Generally speaking you install 1 RPM package,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;yum install cloudera-manager-server-db-2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It will install its dependancies&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From there you start the embedded DB (service cloudera-scm-server-db start)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once it completes self-configuration of the DB you should be able to start CM server&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;service cloudera-scm-server start&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once you see "Jetty Started" in the logging under /var/log/cloudera-scm-server/cloudera-scm-server.log you can connect to the server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://your.host.fqdn:7180"&gt;http://your.host.fqdn:7180&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From there it will guide you through adding hosts, which will install agent and required JDK. Once that is complete you can start parcel deployment of CM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The "Administration Guide" has the proper steps to "Uninstall", specifically what to do in a failed install attempt. &amp;nbsp;You need to go back through that and verify you cleaned up properly before attempting re-install.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Todd&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2014 13:16:59 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16466#M28389</guid>
      <dc:creator>Grizzly</dc:creator>
      <dc:date>2014-08-05T13:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Cloudera Manager Server - "Name or service not known"</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16480#M28390</link>
      <description>&lt;P&gt;This was an upgrade not a first time install, but I followed the upgrade instructions here:&amp;nbsp;&lt;A target="_blank" href="http://www.cloudera.com/content/cloudera-content/cloudera-docs/CM5/latest/Cloudera-Manager-Administration-Guide/cm5ag_upgrade_cm5.html?scroll=cmig_topic_9_4"&gt;http://www.cloudera.com/content/cloudera-content/cloudera-docs/CM5/latest/Cloudera-Manager-Administration-Guide/cm5ag_upgrade_cm5.html?scroll=cmig_topic_9_4&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It was a problem with my dns set up.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2014 14:16:04 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16480#M28390</guid>
      <dc:creator>gmortiz17</dc:creator>
      <dc:date>2014-08-05T14:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Cloudera Manager Server - "Name or service not known"</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16484#M28391</link>
      <description>&lt;P&gt;The problem was that the following call: (Found in the error log of the installation UI, check out the original question)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;python -c 'import socket; import sys; s = socket.socket(socket.AF_INET); s.settimeout(5.0); s.connect((sys.argv[1], int(sys.argv[2]))); s.close();' hadooop-test.in.wellcentive.com 7182&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;was calling hadooop (threee o's) instead of the name of the server hadoop (two o's)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I checked with my systems team and&amp;nbsp;there was a duplicate entry in the dns with the three o's. Fixed and that was teh problem.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2014 14:25:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-Server-quot-Name-or-service-not-known-quot/m-p/16484#M28391</guid>
      <dc:creator>gmortiz17</dc:creator>
      <dc:date>2014-08-05T14:25:41Z</dc:date>
    </item>
  </channel>
</rss>

