<?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: Accumulo permission denied in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19204#M3038</link>
    <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd be happy to help you with this new problem. To make things easier for future users, how about we mark my answer for the original thread topic and start a new one for this issue?&lt;/P&gt;</description>
    <pubDate>Tue, 23 Sep 2014 00:22:40 GMT</pubDate>
    <dc:creator>busbey</dc:creator>
    <dc:date>2014-09-23T00:22:40Z</dc:date>
    <item>
      <title>Accumulo permission denied</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19080#M3033</link>
      <description>&lt;P&gt;I have installed CLoudera 5.x, and login with "root" user and trying to execute below command&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$ accumulo $PKG.GenerateTestData --start-row 0 --count 1000 --output bulk/test_1.txt&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;getting below error.&lt;/P&gt;&lt;P&gt;Thread "org.apache.accumulo.examples.simple.mapreduce.bulk.GenerateTestData" died Permission denied: user=root, access=WRITE, inode="/user":hdfs:supergroup:drwxr-xr-x&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What's default password for accumulo to run those scripts?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 09:08:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19080#M3033</guid>
      <dc:creator>NSU</dc:creator>
      <dc:date>2022-09-16T09:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Accumulo permission denied</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19084#M3034</link>
      <description>This is because the root user is not valid within HDFS. Try running the&lt;BR /&gt;command prefixed with "sudo -u hdfs" which runs the command as the hdfs user&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 21 Sep 2014 03:18:43 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19084#M3034</guid>
      <dc:creator>GautamG</dc:creator>
      <dc:date>2014-09-21T03:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Accumulo permission denied</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19092#M3035</link>
      <description>hi,&lt;BR /&gt;What is the default password for accumulo user and hdfs user?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 21 Sep 2014 15:00:43 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19092#M3035</guid>
      <dc:creator>NSU</dc:creator>
      <dc:date>2014-09-21T15:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Accumulo permission denied</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19094#M3036</link>
      <description>&lt;P&gt;To make sure we have the same context, I think you're working through the &lt;A href="http://archive.cloudera.com/accumulo-c5/cdh/5/accumulo-1.6.0-cdh5.1.0/bulkIngest.html" target="_blank"&gt;bulk ingest&lt;/A&gt;&amp;nbsp;overview's &lt;A href="http://archive.cloudera.com/accumulo-c5/cdh/5/accumulo-1.6.0-cdh5.1.0/examples/README.bulkIngest" target="_self"&gt;example&lt;/A&gt;. Please correct me if that's wrong.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Before running any of the accumulo&amp;nbsp;examples, you need to do some user set up. None of them should be run as root nor any of the service principles (accumulo, hdfs, etc).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The user that will run the data generation needs to be able to run MapReduce jobs. See the &lt;A href="http://www.cloudera.com/content/cloudera-content/cloudera-docs/CDH5/latest/CDH5-Installation-Guide/cdh5ig_yarn_cluster_deploy.html" target="_self"&gt;full docs for instructions on provisioning such a user&lt;/A&gt;. In short, ensure they have a user account on all worker nodes and that they have a user directory in HDFS (creating said home directory will require action as the hdfs super user).&lt;/LI&gt;&lt;LI&gt;The user you created above will be used for the data generation step.&amp;nbsp;If you are running on a secure cluster, you will need to use your kerberos password before submitting the job. Otherwise the generation step only requires an initial local login.&lt;/LI&gt;&lt;LI&gt;The data loading step requires an Accumulo user. You should &lt;A href="http://accumulo.apache.org/1.6/accumulo_user_manual.html#_user_administration" target="_self"&gt;create a user via the Accumulo shell&lt;/A&gt;. Be sure to replace the instance name, zookeeper servers, and user/password given in the ARGS line with ones appropriate for your cluster. This loading &lt;STRONG&gt;should not&lt;/STRONG&gt;&amp;nbsp;be done as the Accumulo root user.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Let me know if you have any further problems.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Sep 2014 18:08:10 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19094#M3036</guid>
      <dc:creator>busbey</dc:creator>
      <dc:date>2014-09-21T18:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Accumulo permission denied</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19202#M3037</link>
      <description>&lt;P&gt;I got resolved that permission error. Thank you for that.&lt;/P&gt;&lt;P&gt;I am trying to execute below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;./bin/tool.sh ./lib/accumulo-examples-simple.jar $PKG.BulkIngestExample $ARGS -t test_sample --inputDir /tmp/bulk -workDir /tmp/bulkWork&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the error&lt;/P&gt;&lt;P&gt;=============&lt;/P&gt;&lt;P&gt;Accumulo is not properly configured.&lt;BR /&gt;&lt;BR /&gt;Try running $ACCUMULO_HOME/bin/bootstrap_config.sh and then editing&lt;BR /&gt;$ACCUMULO_HOME/conf/accumulo-env.sh&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After that I tried running "$ACCUMULO_HOME/bin/bootstrap_config.sh" in my shell&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's asking more questions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Choose the heap configuration:&lt;/P&gt;&lt;P&gt;1) 1GB&lt;BR /&gt;2) 2GB&lt;BR /&gt;3) 3GB&lt;BR /&gt;4) 512MB&lt;BR /&gt;#?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Choose the Accumulo memory-map type:&lt;BR /&gt;1) Java&lt;BR /&gt;2) Native&lt;BR /&gt;#?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Choose the Apache Hadoop version:&lt;BR /&gt;1) HADOOP 1&lt;BR /&gt;2) HADOOP 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me on this.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Sep 2014 23:22:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19202#M3037</guid>
      <dc:creator>NSU</dc:creator>
      <dc:date>2014-09-22T23:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Accumulo permission denied</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19204#M3038</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd be happy to help you with this new problem. To make things easier for future users, how about we mark my answer for the original thread topic and start a new one for this issue?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2014 00:22:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Accumulo-permission-denied/m-p/19204#M3038</guid>
      <dc:creator>busbey</dc:creator>
      <dc:date>2014-09-23T00:22:40Z</dc:date>
    </item>
  </channel>
</rss>

