fuse_dfs_wrapper.sh
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:1k
源码类别:

网格计算

开发平台:

Java

  1. #
  2. # Copyright 2005 The Apache Software Foundation
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. #     http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. if [ "$HADOOP_HOME" = "" ]; then
  17. export HADOOP_HOME=/usr/local/share/hadoop
  18. fi
  19. export PATH=$HADOOP_HOME/contrib/fuse_dfs:$PATH
  20. for f in ls $HADOOP_HOME/lib/*.jar $HADOOP_HOME/*.jar ; do
  21. export  CLASSPATH=$CLASSPATH:$f
  22. done
  23. if [ "$OS_ARCH" = "" ]; then
  24. export OS_ARCH=amd64
  25. fi
  26. if [ "$JAVA_HOME" = "" ]; then
  27. export  JAVA_HOME=/usr/local/java
  28. fi
  29. if [ "$LD_LIBRARY_PATH" = "" ]; then
  30. export LD_LIBRARY_PATH=$JAVA_HOME/jre/lib/$OS_ARCH/server:/usr/local/share/hdfs/libhdfs/:/usr/local/lib
  31. fi
  32. ./fuse_dfs $@