<?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 Is it possible to have a 3 VM CDH 4.1 cluster on 1 laptop in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-have-a-3-VM-CDH-4-1-cluster-on-1-laptop/m-p/15406#M2337</link>
    <description>&lt;P&gt;I have one laptop with 16 GB RAM and on this I have setup 3 centos VMs (virtual box) with 3 GB RAM Each.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;my laptop is behind a WiFi network and has static IP. I have configured networking in the VM using "bridged network" and each VM has dedicated IP and each VM can ping each other, it can ping the HOST machine and each VM can connect to the internet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have disabled the firewall on each vm using (systemctl disable firewalld.service).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I installed all the software for CDH 4.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;systemctl disable firewalld.service&lt;/P&gt;&lt;P&gt;reboot&lt;/P&gt;&lt;P&gt;chmod 755 jdk-6u45-linux-x64-rpm.bin&lt;BR /&gt;./jdk-6u45-linux-x64-rpm.bin&lt;/P&gt;&lt;P&gt;wget &lt;A target="_blank" href="http://archive.cloudera.com/cdh4/redhat/6/x86_64/cdh/cloudera-cdh4.repo"&gt;http://archive.cloudera.com/cdh4/redhat/6/x86_64/cdh/cloudera-cdh4.repo&lt;/A&gt;&lt;/P&gt;&lt;P&gt;cp cloudera-cdh4.repo /etc/yum.repos.d/&lt;/P&gt;&lt;P&gt;rpm --import &lt;A target="_blank" href="http://archive.cloudera.com/cdh4/redhat/6/x86_64/cdh/RPMGPG-KEY-cloudera"&gt;http://archive.cloudera.com/cdh4/redhat/6/x86_64/cdh/RPMGPG-KEY-cloudera&lt;/A&gt;&lt;/P&gt;&lt;P&gt;yum install hadoop-hdfs-namenode&lt;/P&gt;&lt;P&gt;yum install hadoop-hdfs-journalnode&lt;/P&gt;&lt;P&gt;yum install zookeeper-server&lt;/P&gt;&lt;P&gt;yum install hadoop-hdfs-zkfc&lt;/P&gt;&lt;P&gt;service zookeeper-server init --myid=1&lt;/P&gt;&lt;P&gt;yum install zookeeper-server&lt;/P&gt;&lt;P&gt;service zookeeper-server start&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I edited the file /etc/zookeeper/conf/zoo.cfg&lt;/P&gt;&lt;P&gt;maxClientCnxns=50&lt;BR /&gt;# The number of milliseconds of each tick&lt;BR /&gt;tickTime=2000&lt;BR /&gt;# The number of ticks that the initial&lt;BR /&gt;# synchronization phase can take&lt;BR /&gt;initLimit=10&lt;BR /&gt;# The number of ticks that can pass between&lt;BR /&gt;# sending a request and getting an acknowledgement&lt;BR /&gt;syncLimit=5&lt;BR /&gt;# the directory where the snapshot is stored.&lt;BR /&gt;dataDir=/var/lib/zookeeper&lt;BR /&gt;# the port at which the clients will connect&lt;BR /&gt;clientPort=2181&lt;BR /&gt;server.1=192.168.1.30:2888:3888&lt;BR /&gt;server.2=192.168.1.31:2888:3888&lt;BR /&gt;server.3=192.168.1.32:2888:3888&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but when I start the service zookeeper-server start. I can see too big problems&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I do nmap -sT -O 192.168.1.30&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only see&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;22/tcp open ssh.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So my question is that why is there no listener on any port for zookeeper-server&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I try to do service zookeeper-server start then it says the process is already running.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The second problem is that the zookeeper.log says&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2014-07-18 17:56:29,910 [myid:1] - WARN [WorkerSender[myid=1]:QuorumCnxManager@368] - Cannot open channel to 2 at election address nn2.abhishek.com/192.168.1.31:3888&lt;BR /&gt;java.net.ConnectException: Connection refused&lt;BR /&gt;at java.net.PlainSocketImpl.socketConnect(Native Method)&lt;BR /&gt;at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)&lt;BR /&gt;at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)&lt;BR /&gt;at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)&lt;BR /&gt;at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)&lt;BR /&gt;at java.net.Socket.connect(Socket.java:529)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.QuorumCnxManager.connectOne(QuorumCnxManager.java:354)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.QuorumCnxManager.toSend(QuorumCnxManager.java:327)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.FastLeaderElection$Messenger$WorkerSender.process(FastLeaderElection.java:393)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.FastLeaderElection$Messenger$WorkerSender.run(FastLeaderElection.java:365)&lt;BR /&gt;at java.lang.Thread.run(Thread.java:662)&lt;BR /&gt;2014-07-18 17:56:29,911 [myid:1] - WARN [WorkerSender[myid=1]:QuorumCnxManager@368] - Cannot open channel to 3 at election address jt1.abhishek.com/192.168.1.32:3888&lt;BR /&gt;java.net.NoRouteToHostException: No route to host&lt;BR /&gt;at java.net.PlainSocketImpl.socketConnect(Native Method)&lt;BR /&gt;at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)&lt;BR /&gt;at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)&lt;BR /&gt;at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)&lt;BR /&gt;at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)&lt;BR /&gt;at java.net.Socket.connect(Socket.java:529)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.QuorumCnxManager.connectOne(QuorumCnxManager.java:354)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.QuorumCnxManager.toSend(QuorumCnxManager.java:327)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.FastLeaderElection$Messenger$WorkerSender.process(FastLeaderElection.java:393)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.FastLeaderElection$Messenger$WorkerSender.run(FastLeaderElection.java:365)&lt;BR /&gt;at java.lang.Thread.run(Thread.java:662)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can assure you that I have typed this command on every VM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;systemctl disable firewalld.service&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;systemctl stop firewalld.service&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me here I am stuck with this for almost a week now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found this blog which has some details of the problem faced by me&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://www.cyberciti.biz/tips/no-route-to-host-error-and-solution.html"&gt;http://www.cyberciti.biz/tips/no-route-to-host-error-and-solution.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Can you ping your router&lt;/P&gt;&lt;P&gt;yes I can ping 192.168.1.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Is firewall blocking you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see I have disabled the firewall.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3)&amp;nbsp;&lt;SPAN&gt;Finally make sure you are using a router and not a proxy server. Proxy servers are good for Internet browsing but not for other work such as ftp, sending ICMP request and so on.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;not sure about this one. it is a WiFi router.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Please help me here. is there anyone over here who has tried something similar? to have 2 VMs on a single laptop? what was the outcome?&lt;/P&gt;</description>
    <pubDate>Fri, 16 Sep 2022 09:02:50 GMT</pubDate>
    <dc:creator>abhishes</dc:creator>
    <dc:date>2022-09-16T09:02:50Z</dc:date>
    <item>
      <title>Is it possible to have a 3 VM CDH 4.1 cluster on 1 laptop</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-have-a-3-VM-CDH-4-1-cluster-on-1-laptop/m-p/15406#M2337</link>
      <description>&lt;P&gt;I have one laptop with 16 GB RAM and on this I have setup 3 centos VMs (virtual box) with 3 GB RAM Each.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;my laptop is behind a WiFi network and has static IP. I have configured networking in the VM using "bridged network" and each VM has dedicated IP and each VM can ping each other, it can ping the HOST machine and each VM can connect to the internet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have disabled the firewall on each vm using (systemctl disable firewalld.service).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I installed all the software for CDH 4.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;systemctl disable firewalld.service&lt;/P&gt;&lt;P&gt;reboot&lt;/P&gt;&lt;P&gt;chmod 755 jdk-6u45-linux-x64-rpm.bin&lt;BR /&gt;./jdk-6u45-linux-x64-rpm.bin&lt;/P&gt;&lt;P&gt;wget &lt;A target="_blank" href="http://archive.cloudera.com/cdh4/redhat/6/x86_64/cdh/cloudera-cdh4.repo"&gt;http://archive.cloudera.com/cdh4/redhat/6/x86_64/cdh/cloudera-cdh4.repo&lt;/A&gt;&lt;/P&gt;&lt;P&gt;cp cloudera-cdh4.repo /etc/yum.repos.d/&lt;/P&gt;&lt;P&gt;rpm --import &lt;A target="_blank" href="http://archive.cloudera.com/cdh4/redhat/6/x86_64/cdh/RPMGPG-KEY-cloudera"&gt;http://archive.cloudera.com/cdh4/redhat/6/x86_64/cdh/RPMGPG-KEY-cloudera&lt;/A&gt;&lt;/P&gt;&lt;P&gt;yum install hadoop-hdfs-namenode&lt;/P&gt;&lt;P&gt;yum install hadoop-hdfs-journalnode&lt;/P&gt;&lt;P&gt;yum install zookeeper-server&lt;/P&gt;&lt;P&gt;yum install hadoop-hdfs-zkfc&lt;/P&gt;&lt;P&gt;service zookeeper-server init --myid=1&lt;/P&gt;&lt;P&gt;yum install zookeeper-server&lt;/P&gt;&lt;P&gt;service zookeeper-server start&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I edited the file /etc/zookeeper/conf/zoo.cfg&lt;/P&gt;&lt;P&gt;maxClientCnxns=50&lt;BR /&gt;# The number of milliseconds of each tick&lt;BR /&gt;tickTime=2000&lt;BR /&gt;# The number of ticks that the initial&lt;BR /&gt;# synchronization phase can take&lt;BR /&gt;initLimit=10&lt;BR /&gt;# The number of ticks that can pass between&lt;BR /&gt;# sending a request and getting an acknowledgement&lt;BR /&gt;syncLimit=5&lt;BR /&gt;# the directory where the snapshot is stored.&lt;BR /&gt;dataDir=/var/lib/zookeeper&lt;BR /&gt;# the port at which the clients will connect&lt;BR /&gt;clientPort=2181&lt;BR /&gt;server.1=192.168.1.30:2888:3888&lt;BR /&gt;server.2=192.168.1.31:2888:3888&lt;BR /&gt;server.3=192.168.1.32:2888:3888&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but when I start the service zookeeper-server start. I can see too big problems&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I do nmap -sT -O 192.168.1.30&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only see&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;22/tcp open ssh.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So my question is that why is there no listener on any port for zookeeper-server&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I try to do service zookeeper-server start then it says the process is already running.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The second problem is that the zookeeper.log says&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2014-07-18 17:56:29,910 [myid:1] - WARN [WorkerSender[myid=1]:QuorumCnxManager@368] - Cannot open channel to 2 at election address nn2.abhishek.com/192.168.1.31:3888&lt;BR /&gt;java.net.ConnectException: Connection refused&lt;BR /&gt;at java.net.PlainSocketImpl.socketConnect(Native Method)&lt;BR /&gt;at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)&lt;BR /&gt;at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)&lt;BR /&gt;at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)&lt;BR /&gt;at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)&lt;BR /&gt;at java.net.Socket.connect(Socket.java:529)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.QuorumCnxManager.connectOne(QuorumCnxManager.java:354)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.QuorumCnxManager.toSend(QuorumCnxManager.java:327)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.FastLeaderElection$Messenger$WorkerSender.process(FastLeaderElection.java:393)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.FastLeaderElection$Messenger$WorkerSender.run(FastLeaderElection.java:365)&lt;BR /&gt;at java.lang.Thread.run(Thread.java:662)&lt;BR /&gt;2014-07-18 17:56:29,911 [myid:1] - WARN [WorkerSender[myid=1]:QuorumCnxManager@368] - Cannot open channel to 3 at election address jt1.abhishek.com/192.168.1.32:3888&lt;BR /&gt;java.net.NoRouteToHostException: No route to host&lt;BR /&gt;at java.net.PlainSocketImpl.socketConnect(Native Method)&lt;BR /&gt;at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)&lt;BR /&gt;at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)&lt;BR /&gt;at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)&lt;BR /&gt;at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)&lt;BR /&gt;at java.net.Socket.connect(Socket.java:529)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.QuorumCnxManager.connectOne(QuorumCnxManager.java:354)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.QuorumCnxManager.toSend(QuorumCnxManager.java:327)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.FastLeaderElection$Messenger$WorkerSender.process(FastLeaderElection.java:393)&lt;BR /&gt;at org.apache.zookeeper.server.quorum.FastLeaderElection$Messenger$WorkerSender.run(FastLeaderElection.java:365)&lt;BR /&gt;at java.lang.Thread.run(Thread.java:662)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can assure you that I have typed this command on every VM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;systemctl disable firewalld.service&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;systemctl stop firewalld.service&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me here I am stuck with this for almost a week now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found this blog which has some details of the problem faced by me&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://www.cyberciti.biz/tips/no-route-to-host-error-and-solution.html"&gt;http://www.cyberciti.biz/tips/no-route-to-host-error-and-solution.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Can you ping your router&lt;/P&gt;&lt;P&gt;yes I can ping 192.168.1.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Is firewall blocking you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see I have disabled the firewall.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3)&amp;nbsp;&lt;SPAN&gt;Finally make sure you are using a router and not a proxy server. Proxy servers are good for Internet browsing but not for other work such as ftp, sending ICMP request and so on.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;not sure about this one. it is a WiFi router.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Please help me here. is there anyone over here who has tried something similar? to have 2 VMs on a single laptop? what was the outcome?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 09:02:50 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-have-a-3-VM-CDH-4-1-cluster-on-1-laptop/m-p/15406#M2337</guid>
      <dc:creator>abhishes</dc:creator>
      <dc:date>2022-09-16T09:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to have a 3 VM CDH 4.1 cluster on 1 laptop</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-have-a-3-VM-CDH-4-1-cluster-on-1-laptop/m-p/15724#M2338</link>
      <description>&lt;P&gt;Can someone please help me out here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have a laptop connected to a wifi network. please create 2 VMs and try to start the zookeeper server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This has not been working for me as zookeeper will just not start. Can you please help.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jul 2014 13:57:01 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-have-a-3-VM-CDH-4-1-cluster-on-1-laptop/m-p/15724#M2338</guid>
      <dc:creator>abhishes</dc:creator>
      <dc:date>2014-07-21T13:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to have a 3 VM CDH 4.1 cluster on 1 laptop</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-have-a-3-VM-CDH-4-1-cluster-on-1-laptop/m-p/15772#M2339</link>
      <description>&lt;P&gt;It's certainly possible, presuming you have enough ram and cpu to run a full stack of JVMs.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;have you verified that you have a myid file for each vm?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the error output looks like it is from&amp;nbsp;&lt;SPAN&gt;192.168.1.30, correct?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;from that it looks like you actually got to&amp;nbsp;&lt;SPAN&gt;192.168.1.31:3888 but it wasn't listening, it also looks like something is blocking&amp;nbsp;&lt;SPAN&gt;192.168.1.32:3888 since you got a no route to host exception.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jul 2014 21:46:54 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-have-a-3-VM-CDH-4-1-cluster-on-1-laptop/m-p/15772#M2339</guid>
      <dc:creator>ben.hemphill</dc:creator>
      <dc:date>2014-07-21T21:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to have a 3 VM CDH 4.1 cluster on 1 laptop</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-have-a-3-VM-CDH-4-1-cluster-on-1-laptop/m-p/16022#M2340</link>
      <description>&lt;P&gt;Yes your suggestion is right. the 32 machine did not have the firewall switched off.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I did serivce stop firewalld.server and service disable firewalld.service it started to work fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Jul 2014 07:47:19 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-have-a-3-VM-CDH-4-1-cluster-on-1-laptop/m-p/16022#M2340</guid>
      <dc:creator>abhishes</dc:creator>
      <dc:date>2014-07-26T07:47:19Z</dc:date>
    </item>
  </channel>
</rss>

