fuse on TDH4.8

Posted 无风浪三尺

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fuse on TDH4.8相关的知识,希望对你有一定的参考价值。

一、安装依赖包

yum install autoconf.noarch

yum install automake

yum install libtool*

yum install m4

yum install fuse*

二、写脚本 /root/wrapper_hdfs_fuse 

for jar in `find /usr/lib/hadoop /usr/lib/hadoop-hdfs -name "*.jar"`
do
  jars=$jars:$jar
done
export LD_LIBRARY_PATH=/usr/lib/hadoop/lib/native:/usr/java/latest/jre/lib/amd64/server:$LD_LIBRARY_PATH
export CLASSPATH=$jars
nohup /usr/lib/hadoop/bin/fuse_dfs [email protected] &

 

三 、新建目录

mkdir /mnt/hdfs

四、执行命令 主机172.16.1.34

sh /root//wrapper_hdfs_fuse -onotrash -oserver=tdh4 -oport=8020 rw /mnt/hdfs

 

此时 ls  /mnt/hdfs 就能看的hdfs的目录和文件了

以上是关于fuse on TDH4.8的主要内容,如果未能解决你的问题,请参考以下文章

FUSE文件系统介绍

FUSE文件系统介绍

操作记录:在ubuntu16.04.1配置fuse开发环境及fuse开发规范测试

利用FUSE编写自定义的文件系统

Rust 中“fuse”背后的词源或软件原理是啥?

fuse入门