<?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: HDP3.0 hbase fail to start due to noexec /tmp in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219751#M181639</link>
    <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/18745/jiangok2006.html" nodeid="18745"&gt;@Lian Jiang&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Glad that your issue resolved.&lt;/P&gt;&lt;P&gt;changing the  hbase temp directory solution is best IMHO .&lt;/P&gt;</description>
    <pubDate>Thu, 16 Aug 2018 00:20:28 GMT</pubDate>
    <dc:creator>akhilsnaik</dc:creator>
    <dc:date>2018-08-16T00:20:28Z</dc:date>
    <item>
      <title>HDP3.0 hbase fail to start due to noexec /tmp</title>
      <link>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219747#M181635</link>
      <description>&lt;P&gt;Hi,I installed hadoop cluster using HDP3.0 but hbase does not work due to this error:&lt;/P&gt;&lt;PRE&gt;Caused by: java.lang.UnsatisfiedLinkError: failed to load the required native library
at org.apache.hbase.thirdparty.io.netty.channel.epoll.Epoll.ensureAvailability(Epoll.java:81)
at org.apache.hbase.thirdparty.io.netty.channel.epoll.EpollEventLoop.&amp;lt;clinit&amp;gt;(EpollEventLoop.java:55)
at org.apache.hbase.thirdparty.io.netty.channel.epoll.EpollEventLoopGroup.newChild(EpollEventLoopGroup.java:134)
at org.apache.hbase.thirdparty.io.netty.channel.epoll.EpollEventLoopGroup.newChild(EpollEventLoopGroup.java:35)
at org.apache.hbase.thirdparty.io.netty.util.concurrent.MultithreadEventExecutorGroup.&amp;lt;init&amp;gt;(MultithreadEventExecutorGroup.java:84)
at org.apache.hbase.thirdparty.io.netty.util.concurrent.MultithreadEventExecutorGroup.&amp;lt;init&amp;gt;(MultithreadEventExecutorGroup.java:58)
at org.apache.hbase.thirdparty.io.netty.util.concurrent.MultithreadEventExecutorGroup.&amp;lt;init&amp;gt;(MultithreadEventExecutorGroup.java:47)
at org.apache.hbase.thirdparty.io.netty.channel.MultithreadEventLoopGroup.&amp;lt;init&amp;gt;(MultithreadEventLoopGroup.java:59)
at org.apache.hbase.thirdparty.io.netty.channel.epoll.EpollEventLoopGroup.&amp;lt;init&amp;gt;(EpollEventLoopGroup.java:104)
at org.apache.hbase.thirdparty.io.netty.channel.epoll.EpollEventLoopGroup.&amp;lt;init&amp;gt;(EpollEventLoopGroup.java:91)
at org.apache.hbase.thirdparty.io.netty.channel.epoll.EpollEventLoopGroup.&amp;lt;init&amp;gt;(EpollEventLoopGroup.java:68)
at org.apache.hadoop.hbase.util.NettyEventLoopGroupConfig.&amp;lt;init&amp;gt;(NettyEventLoopGroupConfig.java:61)
at org.apache.hadoop.hbase.regionserver.HRegionServer.setupNetty(HRegionServer.java:673)
at org.apache.hadoop.hbase.regionserver.HRegionServer.&amp;lt;init&amp;gt;(HRegionServer.java:532)
at org.apache.hadoop.hbase.master.HMaster.&amp;lt;init&amp;gt;(HMaster.java:472)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at org.apache.hadoop.hbase.master.HMaster.constructMaster(HMaster.java:2923)
... 5 more
Caused by: java.lang.UnsatisfiedLinkError: /tmp/liborg_apache_hbase_thirdparty_netty_transport_native_epoll_x86_644257058602762792223.so: /tmp/liborg_apache_hbase_thirdparty_netty_transport_native_ep
oll_x86_644257058602762792223.so: failed to map segment from shared object: Operation not permitted
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824)
at java.lang.Runtime.load0(Runtime.java:809)
at java.lang.System.load(System.java:1086)
at org.apache.hbase.thirdparty.io.netty.util.internal.NativeLibraryUtil.loadLibrary(NativeLibraryUtil.java:36)
at org.apache.hbase.thirdparty.io.netty.util.internal.NativeLibraryLoader.loadLibrary(NativeLibraryLoader.java:243)
at org.apache.hbase.thirdparty.io.netty.util.internal.NativeLibraryLoader.load(NativeLibraryLoader.java:187)
at org.apache.hbase.thirdparty.io.netty.channel.epoll.Native.loadNativeLibrary(Native.java:207)
at org.apache.hbase.thirdparty.io.netty.channel.epoll.Native.&amp;lt;clinit&amp;gt;(Native.java:65)
at org.apache.hbase.thirdparty.io.netty.channel.epoll.Epoll.&amp;lt;clinit&amp;gt;(Epoll.java:33)
... 24 more
&lt;/PRE&gt;&lt;P&gt;Looks it is caused by nonexec permission of /tmp. To make hbase not use /tmp, I added:&lt;/P&gt;&lt;PRE&gt;{ "hbase-site": { "properties": { "hbase.tmp.dir": "/u01/tmp" } } }&lt;/PRE&gt;&lt;P&gt;But this does not work and hbase still uses /tmp. Any idea? Appreciate any help.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 06:33:09 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219747#M181635</guid>
      <dc:creator>jiangok2006</dc:creator>
      <dc:date>2018-08-14T06:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: HDP3.0 hbase fail to start due to noexec /tmp</title>
      <link>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219748#M181636</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="#"&gt;@Lian Jiang&lt;/A&gt; ,&lt;/P&gt;&lt;P&gt;Can you give some more details about the issue.&lt;/P&gt;&lt;P&gt;Like your operating system, Internal memory &lt;/P&gt;&lt;P&gt;are you trying to deploy the HDP3.0 using cloudbreak ?&lt;/P&gt;&lt;P&gt;Additionally, this error is at Netty, a third party app used by HDP services to deploy containers .&lt;/P&gt;&lt;P&gt;I found something similar here : &lt;A href="https://github.com/netty/netty/issues/6678" target="_blank"&gt;https://github.com/netty/netty/issues/6678&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Seems this is related.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 10:47:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219748#M181636</guid>
      <dc:creator>akhilsnaik</dc:creator>
      <dc:date>2018-08-14T10:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: HDP3.0 hbase fail to start due to noexec /tmp</title>
      <link>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219749#M181637</link>
      <description>&lt;P&gt;Thanks &lt;A href="https://community.hortonworks.com/users/18735/asnaik.html"&gt;Akhil S Naik&lt;/A&gt;&lt;/P&gt;&lt;P&gt;OS: oracle linux 7,&lt;/P&gt;&lt;P&gt;memory: 314g&lt;/P&gt;&lt;P&gt;deployment tool: ambari 2.7 blueprint.&lt;/P&gt;&lt;P&gt;Is HDP3.0 using the netty having bug 6678 fixed? 6678 seems to be just a warning. But it failed hbase in my case. Any solution? Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 11:08:55 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219749#M181637</guid>
      <dc:creator>jiangok2006</dc:creator>
      <dc:date>2018-08-14T11:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: HDP3.0 hbase fail to start due to noexec /tmp</title>
      <link>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219750#M181638</link>
      <description>&lt;P&gt;This problem is resolved by adding hbase.netty.nativetransport = false. &lt;/P&gt;&lt;P&gt;Do you foresee any issue using this fix? &lt;A rel="user" href="https://community.cloudera.com/users/18735/asnaik.html" nodeid="18735"&gt;@Akhil S Naik&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;[UPDATE 8/15/2018]&lt;/P&gt;&lt;P&gt;This setting works and may be better than the above one:&lt;/P&gt;&lt;P&gt;{
      "hbase-env": {
        "properties": {
          "hbase_java_io_tmpdir": "/u01/tmp"
        }
      }
    },&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 22:49:28 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219750#M181638</guid>
      <dc:creator>jiangok2006</dc:creator>
      <dc:date>2018-08-14T22:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: HDP3.0 hbase fail to start due to noexec /tmp</title>
      <link>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219751#M181639</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/18745/jiangok2006.html" nodeid="18745"&gt;@Lian Jiang&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Glad that your issue resolved.&lt;/P&gt;&lt;P&gt;changing the  hbase temp directory solution is best IMHO .&lt;/P&gt;</description>
      <pubDate>Thu, 16 Aug 2018 00:20:28 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219751#M181639</guid>
      <dc:creator>akhilsnaik</dc:creator>
      <dc:date>2018-08-16T00:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: HDP3.0 hbase fail to start due to noexec /tmp</title>
      <link>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219752#M181640</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/18745/jiangok2006.html" nodeid="18745"&gt;@Lian Jiang&lt;/A&gt;&lt;/P&gt;&lt;P&gt;For other HCC users reference: &lt;/P&gt;&lt;P&gt;Adding a link to the other thread which describes about this issue in more detail.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hortonworks.com/questions/212329/hdp30-timeline-service-v2-reader-cannot-create-zoo.html?childToView=212445#answer-212445" target="_blank"&gt;https://community.hortonworks.com/questions/212329/hdp30-timeline-service-v2-reader-cannot-create-zoo.html?childToView=212445#answer-212445&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Aug 2018 06:23:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/HDP3-0-hbase-fail-to-start-due-to-noexec-tmp/m-p/219752#M181640</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2018-08-16T06:23:44Z</dc:date>
    </item>
  </channel>
</rss>

