hdfsproxy
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:5k
源码类别:

网格计算

开发平台:

Java

  1. #!/usr/bin/env bash
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements.  See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License.  You may obtain a copy of the License at
  8. #
  9. #     http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. # The HdfsProxy command script
  17. #
  18. # Environment Variables
  19. #
  20. #   JAVA_HOME        The java implementation to use.  Overrides JAVA_HOME.
  21. #
  22. #   HDFSPROXY_CLASSPATH Extra Java CLASSPATH entries.
  23. #
  24. #   HDFSPROXY_HEAPSIZE  The maximum amount of heap to use, in MB. 
  25. #                    Default is 1000.
  26. #
  27. #   HDFSPROXY_OPTS      Extra Java runtime options.
  28. #   
  29. #   HDFSPROXY_NAMENODE_OPTS       These options are added to HDFSPROXY_OPTS 
  30. #   HDFSPROXY_CLIENT_OPTS         when the respective command is run.
  31. #   HDFSPROXY_{COMMAND}_OPTS etc  HDFSPROXY_JT_OPTS applies to JobTracker 
  32. #                              for e.g.  HDFSPROXY_CLIENT_OPTS applies to 
  33. #                              more than one command (fs, dfs, fsck, 
  34. #                              dfsadmin etc)  
  35. #
  36. #   HDFSPROXY_CONF_DIR  Alternate conf dir. Default is ${HDFSPROXY_HOME}/conf.
  37. #
  38. #   HDFSPROXY_ROOT_LOGGER The root appender. Default is INFO,console
  39. #
  40. bin=`dirname "$0"`
  41. bin=`cd "$bin"; pwd`
  42. . "$bin"/hdfsproxy-config.sh
  43. cygwin=false
  44. case "`uname`" in
  45. CYGWIN*) cygwin=true;;
  46. esac
  47. if [ -f "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh" ]; then
  48.   . "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh"
  49. fi
  50. # some Java parameters
  51. if [ "$JAVA_HOME" != "" ]; then
  52.   #echo "run java in $JAVA_HOME"
  53.   JAVA_HOME=$JAVA_HOME
  54. fi
  55.   
  56. if [ "$JAVA_HOME" = "" ]; then
  57.   echo "Error: JAVA_HOME is not set."
  58.   exit 1
  59. fi
  60. JAVA=$JAVA_HOME/bin/java
  61. JAVA_HEAP_MAX=-Xmx1000m 
  62. # check envvars which might override default args
  63. if [ "$HDFSPROXY_HEAPSIZE" != "" ]; then
  64.   #echo "run with heapsize $HDFSPROXY_HEAPSIZE"
  65.   JAVA_HEAP_MAX="-Xmx""$HDFSPROXY_HEAPSIZE""m"
  66.   #echo $JAVA_HEAP_MAX
  67. fi
  68. # CLASSPATH initially contains $HDFSPROXY_CONF_DIR
  69. CLASSPATH="${HDFSPROXY_CONF_DIR}"
  70. CLASSPATH=${CLASSPATH}:$JAVA_HOME/lib/tools.jar
  71. # for developers, add HdfsProxy classes to CLASSPATH
  72. if [ -d "$HDFSPROXY_HOME/build/classes" ]; then
  73.   CLASSPATH=${CLASSPATH}:$HDFSPROXY_HOME/build/classes
  74. fi
  75. if [ -d "$HDFSPROXY_HOME/build/webapps" ]; then
  76.   CLASSPATH=${CLASSPATH}:$HDFSPROXY_HOME/build
  77. fi
  78. if [ -d "$HDFSPROXY_HOME/build/test/classes" ]; then
  79.   CLASSPATH=${CLASSPATH}:$HDFSPROXY_HOME/build/test/classes
  80. fi
  81. # so that filenames w/ spaces are handled correctly in loops below
  82. IFS=
  83. # for releases, add hdfsproxy jar & webapps to CLASSPATH
  84. if [ -d "$HDFSPROXY_HOME/webapps" ]; then
  85.   CLASSPATH=${CLASSPATH}:$HDFSPROXY_HOME
  86. fi
  87. for f in $HDFSPROXY_HOME/hdfsproxy-*.jar; do
  88.   CLASSPATH=${CLASSPATH}:$f;
  89. done
  90. # add libs to CLASSPATH
  91. if [ -d "$HDFSPROXY_HOME/lib" ]; then
  92. for f in $HDFSPROXY_HOME/lib/*.jar; do
  93.   CLASSPATH=${CLASSPATH}:$f;
  94. done
  95. fi
  96. if [ -d "$HDFSPROXY_HOME/../../" ]; then
  97. for f in $HDFSPROXY_HOME/../../*.jar; do
  98.     CLASSPATH=${CLASSPATH}:$f;
  99.   done
  100. fi
  101. if [ -d "$HDFSPROXY_HOME/../../lib" ]; then
  102. for f in $HDFSPROXY_HOME/../../lib/*.jar; do
  103.     CLASSPATH=${CLASSPATH}:$f;
  104.   done
  105. fi
  106. if [ -d "$HDFSPROXY_HOME/../../lib/jsp-2.1" ]; then
  107. for f in $HDFSPROXY_HOME/../../lib/jsp-2.1/*.jar; do
  108.     CLASSPATH=${CLASSPATH}:$f;
  109.   done
  110. fi
  111. # add user-specified CLASSPATH last
  112. if [ "$HDFSPROXY_CLASSPATH" != "" ]; then
  113.   CLASSPATH=${CLASSPATH}:${HDFSPROXY_CLASSPATH}
  114. fi
  115. # default log directory & file
  116. if [ "$HDFSPROXY_LOG_DIR" = "" ]; then
  117.   HDFSPROXY_LOG_DIR="$HDFSPROXY_HOME/logs"
  118. fi
  119. if [ "$HDFSPROXY_LOGFILE" = "" ]; then
  120.   HDFSPROXY_LOGFILE='hdfsproxy.log'
  121. fi
  122. # restore ordinary behaviour
  123. unset IFS
  124. # figure out which class to run
  125. CLASS='org.apache.hadoop.hdfsproxy.HdfsProxy'
  126. # cygwin path translation
  127. if $cygwin; then
  128.   CLASSPATH=`cygpath -p -w "$CLASSPATH"`
  129.   HDFSPROXY_HOME=`cygpath -d "$HDFSPROXY_HOME"`
  130.   HDFSPROXY_LOG_DIR=`cygpath -d "$HDFSPROXY_LOG_DIR"`
  131. fi
  132. # cygwin path translation
  133. if $cygwin; then
  134.   JAVA_LIBRARY_PATH=`cygpath -p "$JAVA_LIBRARY_PATH"`
  135. fi
  136. HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.log.dir=$HDFSPROXY_LOG_DIR"
  137. HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.log.file=$HDFSPROXY_LOGFILE"
  138. HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.home.dir=$HDFSPROXY_HOME"
  139. HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.id.str=$HDFSPROXY_IDENT_STRING"
  140. HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.root.logger=${HDFSPROXY_ROOT_LOGGER:-INFO,console}"
  141. if [ "x$JAVA_LIBRARY_PATH" != "x" ]; then
  142.   HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Djava.library.path=$JAVA_LIBRARY_PATH"
  143. fi  
  144. # run it
  145. exec "$JAVA" $JAVA_HEAP_MAX $HDFSPROXY_OPTS -classpath "$CLASSPATH" $CLASS "$@"