如何在openstack上安装alluxio1.2
How install alluxio1.2 on openstack
我尝试使用 spark 和 hdfs 在 openstack 上的虚拟机 centos 上安装 alluxio1.2,但安装不起作用。 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
是否有特殊的安装方式可以在一台 openstack 机器上安装 alluxio?
看起来 Alluxio master 的网站 UI 无法启动,因为该地址已被使用。如果端口被另一个进程占用,就会发生这种情况。 Alluxio web UI 默认使用 web UI 端口 19999。如果您希望另一个进程使用该端口,您可以通过更改配置参数 (http://www.alluxio.org/docs/master/en/Configuration-Settings.html#master-configuration)、alluxio.master.web.port
将 Alluxio master web UI 端口更改为另一个端口号。
我尝试使用 spark 和 hdfs 在 openstack 上的虚拟机 centos 上安装 alluxio1.2,但安装不起作用。 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
是否有特殊的安装方式可以在一台 openstack 机器上安装 alluxio?
看起来 Alluxio master 的网站 UI 无法启动,因为该地址已被使用。如果端口被另一个进程占用,就会发生这种情况。 Alluxio web UI 默认使用 web UI 端口 19999。如果您希望另一个进程使用该端口,您可以通过更改配置参数 (http://www.alluxio.org/docs/master/en/Configuration-Settings.html#master-configuration)、alluxio.master.web.port
将 Alluxio master web UI 端口更改为另一个端口号。