简体   繁体   English

如何在OpenStack上安装alluxio1.2

[英]How install alluxio1.2 on openstack

I try to install alluxio1.2 on a VM centos on openstack with spark and hdfs but the installation doesn't works. 我尝试在带有spark和hdfs的openstack上的VM centos上安装alluxio1.2,但安装不起作用。 Spark and hdfs are already install and work Spark和HDFS已安装并运行

    ERROR logger.type (AlluxioMaster.java:main) - Uncaught exception while running Alluxio master, stopping it and exiting.
java.lang.RuntimeException: java.net.BindException: Address already in use
        at com.google.common.base.Throwables.propagate(Throwables.java:160)
        at alluxio.web.UIWebServer.startWebServer(UIWebServer.java:164)
        at alluxio.master.AlluxioMaster.startServingWebServer(AlluxioMaster.java:467)
        at alluxio.master.AlluxioMaster.startServing(AlluxioMaster.java:452)
        at alluxio.master.AlluxioMaster.startServing(AlluxioMaster.java:447)
        at alluxio.master.AlluxioMaster.start(AlluxioMaster.java:389)
        at alluxio.master.AlluxioMaster.main(AlluxioMaster.java:86)
Caused by: java.net.BindException: Address already in use
        at sun.nio.ch.Net.bind0(Native Method)
        at sun.nio.ch.Net.bind(Net.java:433)
        at sun.nio.ch.Net.bind(Net.java:425)
        at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223)
        at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74)
        at org.eclipse.jetty.server.nio.SelectChannelConnector.open(SelectChannelConnector.java:187)
        at alluxio.web.UIWebServer.startWebServer(UIWebServer.java:154)
        ... 5 more

Are there a special installation to install alluxio on one openstack machine ? 是否有特殊安装方式将alluxio安装在一台openstack计算机上?

It looks like the Alluxio master's web UI cannot start because the address is already in use. 看起来Alluxio主站的Web UI无法启动,因为该地址已被使用。 This happens if the port is taken by another process. 如果端口被另一个进程占用,则会发生这种情况。 Alluxio web UI uses the port 19999 for the web UI by default. 默认情况下,Alluxio Web UI使用端口19999作为Web UI。 If you expect another process to be using that port, you can change the Alluxio master web UI port by changing the configuration parameter ( http://www.alluxio.org/docs/master/en/Configuration-Settings.html#master-configuration ), alluxio.master.web.port , to another port number. 如果您期望其他进程正在使用该端口,则可以通过更改配置参数( http://www.alluxio.org/docs/master/en/Configuration-Settings.html#master-配置 ), alluxio.master.web.port到另一个端口号。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM