当前位置: 代码迷 >> 综合 >> Error while bootstrapping:/usr/bin/env: ambari-python-wrap: No such file or directory
  详细解决方案

Error while bootstrapping:/usr/bin/env: ambari-python-wrap: No such file or directory

热度:72   发布时间:2024-01-09 18:10:48.0

复制AmbariServer节点“/var/lib/ambari-server/create-python-Wrap.sh“文件,然后将其放在有问题的ambari-agent代理节点上”/var/lib/ambari-agent/tmp/create-python-wrap.sh“上,然后执行下面命令

sh -x /var/lib/ambari-agent/tmp/create-python-wrap.sh

同样server节点没有该目录报错也可以执行

然后验证它是否创建了链接

ls -lart /usr/bin/ambari-python-wrap

 如果上述执行碰到linux /bin/ln: Operation not permitted

需要设置

  1. 关闭THP服务(每个节点都需要)
  2. 修改配置文件/etc/rc.d/rc.local

    使用root用户执行命令:vi /etc/rc.d/rc.local,添加以下内容

if test -f /sys/kernel/mm/transparent_hugepage/enabled; then

echo never > /sys/kernel/mm/transparent_hugepage/enabled

fi

if test -f /sys/kernel/mm/transparent_hugepage/defrag; then

echo never > /sys/kernel/mm/transparent_hugepage/defrag

fi

3.执行chmod +x /etc/rc.d/rc.local

4.然后重启服务器

  reboot

  相关解决方案