gpt4 book ai didi

hadoop - 启动配置单元服务器和配置单元 Web 界面时遇到问题

转载 作者:可可西里 更新时间:2023-11-01 14:46:03 25 4
gpt4 key购买 nike

((1))

启动 thrift 服务器时出现以下错误:

hive --service hiveserver

Starting Hive Thrift Server
org.apache.thrift.transport.TTransportException: Could not create ServerSocket on address 0.0.0.0/0.0.0.0:10000.

当我运行 netstat 时,端口 10000 已被使用..

$ netstat -nl | grep 10000
tcp6 0 0 :::10000 :::* LISTEN

我该如何解决?

((2))

启动 hive web 界面时出现以下错误

hive --service hwi

$ hive --service hwi
13/01/01 22:05:36 INFO hwi.HWIServer: HWI is starting up
13/01/01 22:05:37 INFO mortbay.log: Logging to org.slf4j.impl.Log4jLoggerAdapter(org.mortbay.log) via org.mortbay.log.Slf4jLog
13/01/01 22:05:37 INFO mortbay.log: jetty-6.1.26
13/01/01 22:05:37 INFO mortbay.log: Extract /opt/hive/lib/hive-hwi-0.9.0.jar to /tmp/Jetty_127_0_0_1_3606_hive.hwi.0.9.0.jar__hwi__.6ogsv5/webapp
13/01/01 22:05:37 WARN mortbay.log: failed SocketConnector@127.0.0.1:3606: java.net.BindException: Address already in use
13/01/01 22:05:37 WARN mortbay.log: failed Jetty20SShims$Server@21e554: java.net.BindException: Address already in use
Exception in thread "main" java.net.BindException: Address already in use
at java.net.PlainSocketImpl.socketBind(Native Method)

请帮忙。

提前致谢!

最佳答案

您的端口地址似乎被其他程序使用,您可以按照以下提到的步骤操作:-

((1)) 使用另一个端口地址启动 hive server

    hive --service hiveserver -p 10001 &

((2))

a] 如果 $HIVE_HOME/conf 文件夹中不存在,则创建 hive-site.xml 文件 b] 在其中添加以下行

   <?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>hive.hwi.listen.host</name>
<value>localhost</value>
</property>
<property>
<name>hive.hwi.listen.port</name>
<value>9998</value>
</property>
<property>
<name>hive.hwi.war.file</name>
<value>lib/hive-hwi-0.10.0.war</value>
<description>This sets the path to the HWI war file, relative to ${HIVE_HOME}. </description>
</property>
</configuration>

c] 启动 hive web 界面

    hive --service hwi

d] 浏览localhost:9998/hwi/

关于hadoop - 启动配置单元服务器和配置单元 Web 界面时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14112183/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com