运行hadoop fs -ls 命令显示本地目录问题

2024-06-09 10:32

本文主要是介绍运行hadoop fs -ls 命令显示本地目录问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

环境CentOS6.4 CDH5.2

安装完成后发生如下问题

[hdfs@hadoop01 ~]$ hadoop fs -ls /
Found 25 items
-rw-r--r--   1 root   root              0 2016-08-17 10:47 /.autofsck
dr-xr-xr-x   - root   root           4096 2016-08-01 17:21 /bin
dr-xr-xr-x   - root   root           1024 2016-07-05 09:08 /boot
drwxr-xr-x   - root   root           4096 2016-07-06 23:49 /data
drwxr-xr-x   - root   root           3640 2016-08-17 10:47 /dev
drwxr-xr-x   - root   root           4096 2016-08-15 20:30 /dfs
drwxr-xr-x   - root   root           4096 2016-08-17 10:50 /etc
drwxr-xr-x   - hadoop root           4096 2016-08-15 16:25 /hadoop
drwxr-xr-x   - root   root           4096 2016-07-17 15:29 /home
dr-xr-xr-x   - root   root           4096 2016-07-17 15:18 /lib
dr-xr-xr-x   - root   root          12288 2016-07-17 15:18 /lib64
drwx------   - root   root          16384 2016-07-05 09:05 /lost+found
drwxr-xr-x   - root   root           4096 2011-09-23 19:50 /media
drwxr-xr-x   - root   root           4096 2011-09-23 19:50 /mnt
drwxr-xr-x   - 1106   4001           4096 2015-08-22 05:34 /opt
dr-xr-xr-x   - root   root              0 2016-08-17 10:47 /proc
dr-xr-x---   - root   root           4096 2016-08-17 10:49 /root
dr-xr-xr-x   - root   root           4096 2016-08-01 15:29 /sbin
drwxr-xr-x   - root   root              0 2016-08-17 10:47 /selinux
drwxr-xr-x   - root   root           4096 2011-09-23 19:50 /srv
drwxr-xr-x   - root   root              0 2016-08-17 10:47 /sys
drwxrwxrwt   - root   root          12288 2016-08-17 10:57 /tmp
drwxr-xr-x   - root   oinstall       4096 2016-07-24 14:54 /u01
drwxr-xr-x   - root   root           4096 2016-08-01 10:53 /usr
drwxr-xr-x   - root   root           4096 2016-07-05 09:06 /var
解决方案:

[root@hadoop01 ~]# cat /opt/cloudera/parcels/CDH-5.2.6-1.cdh5.2.6.p0.2/etc/hadoop/conf.empty/core-site.xml
<?xml version="1.0"?>
<!--Licensed to the Apache Software Foundation (ASF) under one or morecontributor license agreements.  See the NOTICE file distributed withthis work for additional information regarding copyright ownership.The ASF licenses this file to You under the Apache License, Version 2.0(the "License"); you may not use this file except in compliance withthe License.  You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.
-->
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?><configuration>
<property>
<name>fs.defaultFS</name>
<value>hdfs://hadoop01:8020</value>
</property> 
</configuration>

配置客户端,添加defaultFS参数

这篇关于运行hadoop fs -ls 命令显示本地目录问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1044926

相关文章

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

在java中如何将inputStream对象转换为File对象(不生成本地文件)

《在java中如何将inputStream对象转换为File对象(不生成本地文件)》:本文主要介绍在java中如何将inputStream对象转换为File对象(不生成本地文件),具有很好的参考价... 目录需求说明问题解决总结需求说明在后端中通过POI生成Excel文件流,将输出流(outputStre

SpringBoot配置Ollama实现本地部署DeepSeek

《SpringBoot配置Ollama实现本地部署DeepSeek》本文主要介绍了在本地环境中使用Ollama配置DeepSeek模型,并在IntelliJIDEA中创建一个Sprin... 目录前言详细步骤一、本地配置DeepSeek二、SpringBoot项目调用本地DeepSeek前言随着人工智能技

SpringBoot启动报错的11个高频问题排查与解决终极指南

《SpringBoot启动报错的11个高频问题排查与解决终极指南》这篇文章主要为大家详细介绍了SpringBoot启动报错的11个高频问题的排查与解决,文中的示例代码讲解详细,感兴趣的小伙伴可以了解一... 目录1. 依赖冲突:NoSuchMethodError 的终极解法2. Bean注入失败:No qu

MySQL新增字段后Java实体未更新的潜在问题与解决方案

《MySQL新增字段后Java实体未更新的潜在问题与解决方案》在Java+MySQL的开发中,我们通常使用ORM框架来映射数据库表与Java对象,但有时候,数据库表结构变更(如新增字段)后,开发人员可... 目录引言1. 问题背景:数据库与 Java 实体不同步1.1 常见场景1.2 示例代码2. 不同操作

如何解决mysql出现Incorrect string value for column ‘表项‘ at row 1错误问题

《如何解决mysql出现Incorrectstringvalueforcolumn‘表项‘atrow1错误问题》:本文主要介绍如何解决mysql出现Incorrectstringv... 目录mysql出现Incorrect string value for column ‘表项‘ at row 1错误报错

如何解决Spring MVC中响应乱码问题

《如何解决SpringMVC中响应乱码问题》:本文主要介绍如何解决SpringMVC中响应乱码问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Spring MVC最新响应中乱码解决方式以前的解决办法这是比较通用的一种方法总结Spring MVC最新响应中乱码解

pip无法安装osgeo失败的问题解决

《pip无法安装osgeo失败的问题解决》本文主要介绍了pip无法安装osgeo失败的问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 进入官方提供的扩展包下载网站寻找版本适配的whl文件注意:要选择cp(python版本)和你py

Linux修改pip临时目录方法的详解

《Linux修改pip临时目录方法的详解》在Linux系统中,pip在安装Python包时会使用临时目录(TMPDIR),但默认的临时目录可能会受到存储空间不足或权限问题的影响,所以本文将详细介绍如何... 目录引言一、为什么要修改 pip 的临时目录?1. 解决存储空间不足的问题2. 解决权限问题3. 提