如何在hadoop中向公众公开任务跟踪器/作业跟踪器Web界面?
我正在尝试监视不同的集群节点,但每次我都必须 ssh -X 到该节点并启动浏览器来查看状态信息。
无论如何,有没有办法制作这些http://jobtracker:50030,http://namenode:50070 等,向公众开放?任何人都可以在浏览器中查看它们。
我想这可能需要通过设置服务器来完成。但我通过谷歌搜索并没有找到任何有用的信息。
I'm trying to monitor different cluster nodes, but everytime I have to ssh -X to the node and start the browser to take a look at the status information.
Is there anyway to make theses http://jobtracker:50030, http://namenode:50070 etc, open to public access ? Anyone can look at them in the browser.
I guess this probably need to be done by setup a server. But I haven't find any useful information by googleing it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不在master上运行像NginX这样的代理呢?
Nginx 将在端口 80 上运行,并允许您将一个域转发到端口 50030,将另一个域转发到 50070。
数千家公司在生产 Web 应用程序部署中使用它来实现这一目的:
http://nginx.org/
Why don't you run a proxy like NginX on the master?
Nginx would run on port 80, and allow you to forward one domain to port 50030, and the other to 50070.
It's used in production web-application deployments by thousands of companies to do exactly that:
http://nginx.org/