我尝试使用链接https://github.com/cloudera/hue .I在Amazon中安装Hue,查看状态
development server running at http://127.0.0.1:8000/
我也可以卷曲的网址,但得到空白页。卷曲内容。
"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="refresh" content="0; url=/beeswax">
</head>
<body>
</body>
</html>"但是,当我使用端口8000的公共dns url访问浏览器时,我将得到错误页面。我是不是错过了任何步骤。
谢谢
发布于 2014-04-08 03:34:03
你看到了什么错误页面?这可能只是在启动运行服务器0.0.0.0:8000时没有打开8000或绑定服务器。此外,建议使用runcpserver而不是开发服务器启动Hue。
发布于 2016-12-09 19:06:19
您正在环回接口127.0.0.1上运行。这只能从主机访问,而不是外部访问。您需要更改hue.ini并设置:
http_host=0.0.0.0
https://stackoverflow.com/questions/22913957
复制相似问题