<?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: HBase spring java connection issues in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138340#M31872</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/532/tyu.html" nodeid="532"&gt;@Ted Yu&lt;/A&gt;, is this from external source or on the same machine? Because when I run commands on the VM everything is fine. Its just connecting to the zookeeper externally is where I am having the issues. I am running my VM on the desktop but then I am using code on the desktop to connect to the VM hbase.&lt;/P&gt;</description>
    <pubDate>Wed, 15 Jun 2016 00:12:23 GMT</pubDate>
    <dc:creator>jsmith</dc:creator>
    <dc:date>2016-06-15T00:12:23Z</dc:date>
    <item>
      <title>HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138333#M31865</link>
      <description>&lt;P style="margin-left: 20px;"&gt;Can someone please do a base out of the box Hortonworks sandbox VM and use one of the following repos from github or any spring framework with hbase. And tell me what the heck I am doing wrong? I have tried multiple hithub codes to see how this stuff works and I cannot get anything to connect successfully. I have been fighting this for a week now and I cannot seem to gain any ground.&lt;/P&gt;&lt;P style="margin-left: 20px;"&gt;Hortonworks VM - HDP™ 2.4 on Hortonworks Sandbox&lt;/P&gt;&lt;P style="margin-left: 20px;"&gt;Repo 1: &lt;A href="https://github.com/spring-projects/spring-hadoop-samples/" target="_blank"&gt;https://github.com/spring-projects/spring-hadoop-samples/&lt;/A&gt;&lt;/P&gt;&lt;P style="margin-left: 20px;"&gt;Repo 2: &lt;A href="https://github.com/spring-projects/spring-data-book/tree/master/hadoop" target="_blank"&gt;https://github.com/spring-projects/spring-data-book/tree/master/hadoop&lt;/A&gt;&lt;/P&gt;&lt;P style="margin-left: 20px;"&gt;I cannot get either of these to work, I have also tried just using a basic &lt;/P&gt;&lt;PRE&gt;Configuration c = HBaseConfiguration.create();
HBaseAdmin.checkHBaseAvailable(c);&lt;/PRE&gt;&lt;P style="margin-left: 20px;"&gt;with the following hbase-site.xml&lt;/P&gt;&lt;PRE&gt;&amp;lt;configuration&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;dfs.domain.socket.path&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;/var/lib/hadoop-hdfs/dn_socket&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.bucketcache.ioengine&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.bucketcache.percentage.in.combinedcache&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.bucketcache.size&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.bulkload.staging.dir&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;/apps/hbase/staging&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.client.keyvalue.maxsize&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;1048576&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.client.retries.number&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;35&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.client.scanner.caching&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;100&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.cluster.distributed&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;true&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.coprocessor.master.classes&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;org.apache.ranger.authorization.hbase.RangerAuthorizationCoprocessor&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.coprocessor.region.classes&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;org.apache.hadoop.hbase.security.access.SecureBulkLoadEndpoint,org.apache.ranger.authorization.hbase.RangerAuthorizationCoprocessor&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.coprocessor.regionserver.classes&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.defaults.for.version.skip&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;true&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.hregion.majorcompaction&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;604800000&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.hregion.majorcompaction.jitter&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;0.50&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.hregion.max.filesize&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;10737418240&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.hregion.memstore.block.multiplier&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;4&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.hregion.memstore.flush.size&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;134217728&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.hregion.memstore.mslab.enabled&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;true&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.hstore.blockingStoreFiles&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;10&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.hstore.compaction.max&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;10&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.hstore.compactionThreshold&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;3&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.local.dir&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;${hbase.tmp.dir}/local&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.master.info.bindAddress&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;0.0.0.0&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.master.info.port&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;16010&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.master.port&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;16000&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.region.server.rpc.scheduler.factory.class&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.regionserver.global.memstore.size&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;0.4&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.regionserver.handler.count&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;30&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.regionserver.info.port&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;16030&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.regionserver.port&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;16020&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.regionserver.wal.codec&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;org.apache.hadoop.hbase.regionserver.wal.WALCellCodec&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.rootdir&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;hdfs://localhost:8020/apps/hbase/data&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.rpc.controllerfactory.class&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.rpc.engine&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;org.apache.hadoop.hbase.ipc.SecureRpcEngine&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.rpc.protection&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;PRIVACY&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.rpc.timeout&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;90000&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.security.authentication&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;simple&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.security.authorization&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;true&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.superuser&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;hbase&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.tmp.dir&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;/tmp/hbase-${user.name}&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.zookeeper.property.clientPort&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;2181&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.zookeeper.quorum&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;localhost&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hbase.zookeeper.useMulti&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;true&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;hfile.block.cache.size&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;0.40&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;phoenix.functions.allowUserDefinedFunctions&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt; &amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;phoenix.query.timeoutMs&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;60000&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;zookeeper.session.timeout&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;60000&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
  &amp;lt;property&amp;gt;
    &amp;lt;name&amp;gt;zookeeper.znode.parent&amp;lt;/name&amp;gt;
    &amp;lt;value&amp;gt;/hbase-unsecure&amp;lt;/value&amp;gt;
  &amp;lt;/property&amp;gt;
  
&amp;lt;/configuration&amp;gt;&lt;/PRE&gt;&lt;P style="margin-left: 20px;"&gt;&lt;/P&gt;&lt;P style="margin-left: 20px;"&gt;I have tried asking questions about error messages and I still get no where so is it possible for someone to just try using one of those github code bases and tell me what I am doing wrong? I just cannot seem to get anywhere and it is so frustrating. I hope someone can help, thanks a lot.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2016 21:29:46 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138333#M31865</guid>
      <dc:creator>jsmith</dc:creator>
      <dc:date>2016-06-14T21:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138334#M31866</link>
      <description>&lt;P&gt;Last commit to &lt;A href="https://github.com/spring-projects/spring-hadoop-samples" target="_blank"&gt;https://github.com/spring-projects/spring-hadoop-samples&lt;/A&gt; was 11 months ago.&lt;/P&gt;&lt;P&gt;The other one was even older.&lt;/P&gt;&lt;P&gt;See if you can find newer repo.&lt;/P&gt;&lt;P&gt;If I have time, I plan to try the first repo.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2016 21:49:59 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138334#M31866</guid>
      <dc:creator>tyu</dc:creator>
      <dc:date>2016-06-14T21:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138335#M31867</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/532/tyu.html" nodeid="532"&gt;@Ted Yu&lt;/A&gt; I will look to see if I can find any earlier, I tried looking before but everything I found wouldn't work. But it would be a great help if you did try! I would appreciate that so much! Thanks for the help.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2016 22:02:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138335#M31867</guid>
      <dc:creator>jsmith</dc:creator>
      <dc:date>2016-06-14T22:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138336#M31868</link>
      <description>&lt;P&gt;This is what I did:&lt;/P&gt;&lt;P&gt;cloned spring-hadoop-samples&lt;/P&gt;&lt;P&gt;cd spring-hadoop-samples/hbase&lt;/P&gt;&lt;P&gt;mvn clean package&lt;/P&gt;&lt;P&gt;copied hbase-site.xml from cluster to target/appassembler/etc/hbase-site.xml&lt;/P&gt;&lt;P&gt;sh ./target/appassembler/bin/usercount&lt;/P&gt;&lt;P&gt;Please try the above&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2016 23:40:59 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138336#M31868</guid>
      <dc:creator>tyu</dc:creator>
      <dc:date>2016-06-14T23:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138337#M31869</link>
      <description>&lt;P&gt;I verified that users table was created after running the usercount example:&lt;/P&gt;&lt;P&gt;'users', {NAME =&amp;gt; 'cfInfo'}&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2016 23:53:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138337#M31869</guid>
      <dc:creator>tyu</dc:creator>
      <dc:date>2016-06-14T23:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138338#M31870</link>
      <description>&lt;P&gt;Note, here is snippet w.r.t. CLASSPATH in the sample script:&lt;/P&gt;&lt;P&gt;CLASSPATH=..."$REPO"/hbase-client-0.98.5-hadoop2.jar:"$REPO"/hbase-common-0.98.5-hadoop2.jar:"$REPO"/hbase-protocol-0.98.5-hadoop2.jar&lt;/P&gt;&lt;P&gt;You can plug in the corresponding version of hbase jars accordingly&lt;/P&gt;&lt;P&gt;0.98 is compatible with 1.x release - that was why the sample worked.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 00:06:28 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138338#M31870</guid>
      <dc:creator>tyu</dc:creator>
      <dc:date>2016-06-15T00:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138339#M31871</link>
      <description>&lt;P&gt;That was due to the following config having wrong value - plug ing actual quorum:&lt;/P&gt;&lt;OL&gt;
&lt;LI&gt;&amp;lt;property&amp;gt;&lt;/LI&gt;&lt;LI&gt;&amp;lt;name&amp;gt;hbase.zookeeper.quorum&amp;lt;/name&amp;gt;&lt;/LI&gt;&lt;LI&gt;&amp;lt;value&amp;gt;localhost&amp;lt;/value&amp;gt;&lt;/LI&gt;&lt;LI&gt;&amp;lt;/property&amp;gt;&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Wed, 15 Jun 2016 00:11:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138339#M31871</guid>
      <dc:creator>tyu</dc:creator>
      <dc:date>2016-06-15T00:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138340#M31872</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/532/tyu.html" nodeid="532"&gt;@Ted Yu&lt;/A&gt;, is this from external source or on the same machine? Because when I run commands on the VM everything is fine. Its just connecting to the zookeeper externally is where I am having the issues. I am running my VM on the desktop but then I am using code on the desktop to connect to the VM hbase.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 00:12:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138340#M31872</guid>
      <dc:creator>jsmith</dc:creator>
      <dc:date>2016-06-15T00:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138341#M31873</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/532/tyu.html" nodeid="532"&gt;@Ted Yu&lt;/A&gt; Does this mean you did try it locally instead of on the VM?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 00:47:35 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138341#M31873</guid>
      <dc:creator>jsmith</dc:creator>
      <dc:date>2016-06-15T00:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138342#M31874</link>
      <description>&lt;P&gt;Running sample outside VM should work as long as correct quorum is in hbase-site.xml&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 00:47:49 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138342#M31874</guid>
      <dc:creator>tyu</dc:creator>
      <dc:date>2016-06-15T00:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138343#M31875</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/532/tyu.html" nodeid="532"&gt;@Ted Yu&lt;/A&gt; Yeah I agree, but It was not working. I did download the hbase-site.xml and it did not work for me. I am trying it one more time with a new instance of Hortonworks to verify I did not mess anything up when I finally did try that. I will update here once I test it again.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 00:53:09 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138343#M31875</guid>
      <dc:creator>jsmith</dc:creator>
      <dc:date>2016-06-15T00:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138344#M31876</link>
      <description>&lt;P&gt;I used a running hbase instance (deployed with Ambari) on Openstack.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 00:56:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138344#M31876</guid>
      <dc:creator>tyu</dc:creator>
      <dc:date>2016-06-15T00:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138345#M31877</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/532/tyu.html" nodeid="532"&gt;@Ted Yu&lt;/A&gt;&lt;P&gt; Was HBase running when you started the VM? Or did you have to manually start it? I have been starting it by running the start_hbase.sh on the default directory after you log in. Did you happen to do that?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 00:58:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138345#M31877</guid>
      <dc:creator>jsmith</dc:creator>
      <dc:date>2016-06-15T00:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138346#M31878</link>
      <description>&lt;P&gt;Let's focus on java connection from Spring in this thread.&lt;/P&gt;&lt;P&gt;Please verify that you can access UI of VM - basically hbase runs in the VM.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 01:02:59 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138346#M31878</guid>
      <dc:creator>tyu</dc:creator>
      <dc:date>2016-06-15T01:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138347#M31879</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/532/tyu.html" nodeid="532"&gt;@Ted Yu&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Hmm, maybe that is the difference. I would assume that the hortonworks VM would be good to go but maybe there are some configs that are messed up.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 01:03:09 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138347#M31879</guid>
      <dc:creator>jsmith</dc:creator>
      <dc:date>2016-06-15T01:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138348#M31880</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/532/tyu.html" nodeid="532"&gt;@Ted Yu&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Yes this appears to work successfully on the VM itself without any issues by running that script mentioned above. But I still cannot develop against this because I cannot connect to it externally.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 02:06:54 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138348#M31880</guid>
      <dc:creator>jsmith</dc:creator>
      <dc:date>2016-06-15T02:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138349#M31881</link>
      <description>&lt;P&gt;Try connecting to VM using hbase shell - with proper hbase-site.xml on classpath&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 02:28:29 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138349#M31881</guid>
      <dc:creator>tyu</dc:creator>
      <dc:date>2016-06-15T02:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138350#M31882</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/532/tyu.html" nodeid="532"&gt;@Ted Yu&lt;/A&gt; &lt;/P&gt;&lt;P&gt;I do not have hbase shell installed on my desktop. I am not sure how to even do that. I am running windows 10. All I have done is download that spring github code and tried to connect to my local VM that is running on virtual box. Is there an easy way to install hbase shell?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 02:57:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138350#M31882</guid>
      <dc:creator>jsmith</dc:creator>
      <dc:date>2016-06-15T02:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138351#M31883</link>
      <description>&lt;P&gt;I don't have access to Windows box at the moment.&lt;/P&gt;&lt;P&gt;Is it possible for you to find a Mac / Linux to try the Spring repo ?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 04:45:47 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138351#M31883</guid>
      <dc:creator>tyu</dc:creator>
      <dc:date>2016-06-15T04:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: HBase spring java connection issues</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138352#M31884</link>
      <description>&lt;P&gt;I will try this some time today and see what happens. Ill update you once I have tried it.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 21:53:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/HBase-spring-java-connection-issues/m-p/138352#M31884</guid>
      <dc:creator>jsmith</dc:creator>
      <dc:date>2016-06-15T21:53:42Z</dc:date>
    </item>
  </channel>
</rss>

