我如何通过 url "sandbox.hortonworks.com:8080" 从 hortonworks 连接到 Ambari?
how could i connect to Ambari from hortonworks through url "sandbox.hortonworks.com:8080"?
我在 Oracle Virtual Box 上安装了 Hortonworks 数据平台 (HDP 2.4),当我尝试使用风暴流分析时,它通过 url
连接 ambari
sandbox.hortonworks.com:8080
而不是
127.0.0.1:8080
环回地址,我在浏览器上收到一条错误消息
Error : This site can’t be reached
那么请告诉我如何分配
sandbox.hortonworks.com:8080
从虚拟机OS终端环回地址的域名。
只需添加这一行
127.0.0.1 localhost sandbox.hortonworks.com
到-
如果您在 windows 机器上,此文件
%systemroot%\system32\drivers\etc\hosts
如果你在Mac,那么,这个文件
/etc/hosts
这将需要为您的主机(您安装了 VirtualBox 的主机)完成,而不是在 VM 中完成。
如果您使用的是桥接模式或仅主机适配器,请将 127.0.0.1
替换为您的 VM 的 IP,因此它应该看起来像
192.168.56.101 localhost sandbox.hortonworks.com
这应该可以帮助您使用 FQDN。
我在 Oracle Virtual Box 上安装了 Hortonworks 数据平台 (HDP 2.4),当我尝试使用风暴流分析时,它通过 url
连接 ambarisandbox.hortonworks.com:8080
而不是
127.0.0.1:8080
环回地址,我在浏览器上收到一条错误消息
Error : This site can’t be reached
那么请告诉我如何分配
sandbox.hortonworks.com:8080
从虚拟机OS终端环回地址的域名。
只需添加这一行
127.0.0.1 localhost sandbox.hortonworks.com
到-
如果您在 windows 机器上,此文件
%systemroot%\system32\drivers\etc\hosts
如果你在Mac,那么,这个文件
/etc/hosts
这将需要为您的主机(您安装了 VirtualBox 的主机)完成,而不是在 VM 中完成。
如果您使用的是桥接模式或仅主机适配器,请将 127.0.0.1
替换为您的 VM 的 IP,因此它应该看起来像
192.168.56.101 localhost sandbox.hortonworks.com
这应该可以帮助您使用 FQDN。