我有一个正在运行的Hadoop 2.7和Hive 2.0.1。我正在尝试安装Hive编辑器,以便我可以轻松编写HiveQL查询。因此,我下载并构建了Hue 3.10。我将其配置为使用HDFS和Hive(我不确定它们是否正确)。当我启动Hue时,它检查配置,我在Hue的服务器日志中看到了与webhdfs相关的一些错误
[27/Jul/2016 23:08:55 -0700] webhdfs ERROR Failed to determine superuser of WebHdfs athttp://40.221.1.44:50070/webhdfs/v1/: <HTML><HEAD>
.....
.....
[27/Jul/2016 23:10:10 -0700] webhdfs INFO WebHdfs at http://40.221.1.44:50070/webhdfs/v1/ -- Validation error: <HTML><HEAD>
<TITLE>Network Error</TITLE>
<script type="text/javascript">document.location.href="http://fr0-proxy-vip.eu.ab.corp/error/page.php?id=tcp_error&proxy=fr0-proxylan-p01&summary=Network Error&url=40.221.1.44&category=none&user=&ip=40.221.1.44&details=A communication error occurred: "Operation timed out""</script>
<meta http-equiv="REFRESH" content="0;url='http://fr0-proxy-vip.eu.ab.corp/error/page.php?id=tcp_error&proxy=fr0-proxylan-p01&summary=Network Error&url=40.221.1.44&category=none&user=&ip=40.221.1.44&details=A communication error occurred: "Operation timed out"'">
</HEAD>
<BODY>
<FONT face="Helvetica">
<big><strong></strong></big><BR>
</FONT>
<blockquote>
<TABLE border=0 cellPadding=1 width="80%">
<TR><TD>
<FONT face="Helvetica">
<big>Network Error (tcp_error)</big>
<BR>
<BR>
</FONT>
</TD></TR>
<TR><TD>
<FONT face="Helvetica">
A communication error occurred: "Operation timed out"
</FONT>
</TD></TR>
<TR><TD>
<FONT face="Helvetica">
The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.
</FONT>
</TD></TR>
<TR><TD>
<FONT face="Helvetica" SIZE=2>
<BR>
For assistance, contact the Service Desk (8666).
</FONT>
</TD></TR>
</TABLE>
</blockquote>
</FONT>
</BODY></HTML>
(error 503)
我的hdfs-site.xml
中有以下信息<property>
<name>dfs.webhdfs.enabled</name>
<value>true</value>
</property>
我不介意其他应用,但真的关心Hadoop和Hive。任何帮助都将不胜感激。
hdfs-site.xml
<configuration>
<property>
<name>dfs.webhdfs.enabled</name>
<value>true</value>
</property>
</configuration>
我的core-site.xml
<property>
<name>hadoop.proxyuser.baamarna5617.hosts</name>
<value>*</value>
</property>
<property>
<name>hadoop.proxyuser.baamarna5617.groups</name>
<value>*</value>
</property>
我已经以用户baamarna5617安装了hadoop。
当我启动hue浏览器时,我创建了一个名为“baamarna5617”的用户帐户。我在我的hdfs中创建了/ user / baamarna5617。
在我的mapred-site.xml中,我已经包含以下行
<property>
<name>jobtracker.thrift.address</name>
<value>0.0.0.0:9290</value>
</property>
<property>
<name>mapred.jobtracker.plugins</name>
<value>org.apache.hadoop.thriftfs.ThriftJobTrackerPlugin</value>
<description>Comma-separated list of jobtracker plug-ins to be activated.</description>
</property>
在我的https-site.xml
中<property>
<name>httpfs.proxyuser.hue.hosts</name>
<value>*</value>
</property>
<property>
<name>httpfs.proxyuser.hue.groups</name>
<value>*</value>
</property>
我的hive-site.xml
<property>
<name>hive.hwi.listen.host</name>
<value>40.221.1.44</value>
</property>
<property>
<name>hive.server2.transport.mode</name>
<value>http</value>
</property>
<property>
<name>hive.server2.thrift.bind.host</name>
<value>40.221.1.44</value>
</property>
<property>
<name></name>
<value>http</value>
</property>
<property>
<name>hive.server2.webui.host</name>
<value>40.221.1.44</value>
</property>
<property>
<name>hive.server2.webui.port</name>
<value>10002</value>
</property>
<property>
<name>hive.server2.thrift.http.port</name>
<value>10001</value>
</property>
<property>
<name>hive.server2.thrift.http.path</name>
<value>cliservice</value>
</property>
<property>
<name>hive.server2.thrift.port</name>
<value>10000</value>
</property>
<property>
<name>hive.metastore.thrift.framed.transport.enabled</name>
<value>true</value>
</property>
<property>
<name>hive.metastore.warehouse.dir</name>
<value>/user/hive/warehouse</value>
</property>
现在有更多信息: -
我正在攻击网络代理
我无法使用webhdfs成功创建目录。我可以列出hdfs目录并读取文件,但重命名文件并在hdfs中创建目录失败。
答案 0 :(得分:1)
问题在于卷曲。我升级并删除了所有代理集,并开始工作。感谢。