hadoop httpfs始终返回http/1.1 404 not found

tkqqtvp1  于 2021-06-03  发布在  Hadoop
关注(0)|答案(1)|浏览(482)

hadoop的httpfs服务有问题,尝试 curl 一些资源时:

curl -i http://192.168.4.180:14000/webhdfs/v1/user/hadoop/?op=LISTSTATUS

我得到的答复是:

HTTP/1.1 404 Not Found
Server: Apache-Coyote/1.1
Content-Length: 0
Date: Mon, 17 Aug 2015 08:57:47 GMT

但当我尝试用webhdfs做同样的事情时,它是有效的:

curl -i http://192.168.4.180:50070/webhdfs/v1/user/hadoop/?op=LISTSTATUS 

HTTP/1.1 200 OK
and so on ....

httpfs服务在端口14000上运行,我已经通过nmap检查过了。有什么建议或想法吗?有什么问题吗?

jchrr9hc

jchrr9hc1#

我也遇到同样的问题。通过这个环节解决
简而言之,您需要添加符号链接:


# Point to the 'webapps' in current.

cd /etc/hadoop-httpfs/tomcat-deployment
ln -s /usr/hdp/current/hadoop-httpfs/webapps webapps

相关问题