linux下无root权限,修改执行脚本启动storm的方法

报错

这里写图片描述

$ ./bin/storm nimbus
Need python version > 2.6

这句话的意思是你的python版本必须大于2.6,但是我手中没有root权限,此时该如何启动呢?

修改启动脚本storm

解决方案修改启动脚本storm即可,但是前提你需要在linux下安装好python3:

看下初始的storm执行脚本文件内容:

# STORM-2486: Prevent `cd` from printing the target directory.
unset CDPATH

# Resolve links - $0 may be a softlink
PRG="${0}"

while [ -h "${PRG}" ]; do
  ls=`ls -ld "${PRG}"`
  link=`expr "$ls" : '.*-> \(.*\)$'`
  if expr "$link" : '/.*' > /dev/null; then
    PRG="$link"
  else
    PRG=`dirname "${PRG}"`/"$link"
  fi
done

# find python >= 2.6
if [ -a /usr/bin/python2.6 ]; then
  PYTHON=/usr/bin/python2.6
fi

if [ -z "$PYTHON" ]; then
  PYTHON=/usr/bin/python
fi

# check for version
majversion=`$PYTHON -V 2>&1 | awk '{print $2}' | cut -d'.' -f1`
minversion=`$PYTHON -V 2>&1 | awk '{print $2}' | cut -d'.' -f2`
numversion=$(( 10 * $majversion + $minversion))
if (( $numversion < 26 )); then
  echo "Need python version > 2.6"
  exit 1
fi

STORM_BIN_DIR=`dirname ${PRG}`
export STORM_BASE_DIR=`cd ${STORM_BIN_DIR}/..;pwd`

#check to see if the conf dir is given as an optional argument
if [ $# -gt 1 ]; then
  if [ "--config" = "$1" ]; then
    conf_file=$2
    if [ ! -f "$conf_file" ]; then
      echo "Error: Cannot find configuration directory: $conf_file"
      exit 1
    fi
    STORM_CONF_FILE=$conf_file
    STORM_CONF_DIR=`dirname $conf_file`
  fi
fi

export STORM_CONF_DIR="${STORM_CONF_DIR:-$STORM_BASE_DIR/conf}"
export STORM_CONF_FILE="${STORM_CONF_FILE:-$STORM_BASE_DIR/conf/storm.yaml}"

if [ -f "${STORM_CONF_DIR}/storm-env.sh" ]; then
  . "${STORM_CONF_DIR}/storm-env.sh"
fi

exec "$PYTHON" "${STORM_BIN_DIR}/storm.py" "$@"

可以看到其中有一段校验python版本的代码:

#查找python版本大于等于2.6
# find python >= 2.6
#如果/usr/bin/python2.6存在,则把python2.6赋值给PYTHON,使其生效
if [ -a /usr/bin/python2.6 ]; then
  PYTHON=/usr/bin/python2.6
fi

看到上面的校验shell,可以做如下修改:

#将路径换为你安装的python路径下的python3启动脚本即可成功启动storm
if [ -a /jboss/Python-3.6.3/bin/python3 ]; then
  PYTHON=/jboss/Python-3.6.3/bin/python3
fi

启动nimbus节点校验结果

#后台启动
[jboss@163 apache-storm-1.1.1]$ nohup ./bin/storm nimbus &
[jboss@163 apache-storm-1.1.1]$ nohup: appending output to “nohup.out”

查看nohup.out日志,可以看到成功启动!

或者用jps查看进程,若看到nimbus的名称,也可以表示启动成功。
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值