无法在web浏览器上使用aws公共dns打开cloudera manager 7180端口

uttx8gqw  于 2021-05-29  发布在  Hadoop
关注(0)|答案(1)|浏览(956)

正在尝试在aws ubuntu示例上安装cloudera发行版。使用以下命令成功安装了cloudera manager:

$ wget https://archive.cloudera.com/cm5/installer/latest/cloudera-manager-installer.bin
$ chmod u+x cloudera-manager-installer.bin
$ sudo ./cloudera-manager-installer.bin

现在尝试使用以下url在chrome浏览器上使用aws公共dns打开端口7180:

http://ec2-52-33-212-136.us-west-2.compute.amazonaws.com:7180
https://ec2-52-33-212-136.us-west-2.compute.amazonaws.com:7180

但它没有连接到上面的网址。
我可以成功地执行“ssh ec2-52-33-212-136.us-west-2.compute.amazonaws.com”,但无法使用以上网址在网络浏览器上连接7180端口。
谁能建议我使用aws公共dns名称连接到7180端口吗。

uelo1irk

uelo1irk1#

ssh到ec2示例中并运行

curl http://localhost:7180

如果返回响应,请检查您的安全组是否打开了端口7180的入口。请注意,cloudera manager在端口7183上运行https,因此即使https链接已打开,也无法工作(但7180应该可以工作)。
如果curl没有返回响应,可以查看/var/log/cloudera scm server/cloudera-scm-server.log中的日志

相关问题